blob: 94373fc66fde6ef05d2c11fdc9199bf4f3a49579 [file] [log] [blame]
<!DOCTYPE html>
<html lang="en">
<head>
<style>
#content {
width: 200px;
height: 200px;
margin: 0;
padding: 0;
background-color: green;
}
#clip {
width: 200px;
height: 200px;
margin: 10px;
padding: 10px;
border: 10px solid blue;
-webkit-clip-path: circle(50% at 50% 50%) margin-box;
background-color: yellow;
}
</style>
</head>
<body>
<div id="clip">
<div id="content"></div>
</div>
</body>
</html>