blob: 4a8bd0817a2d23b68c586707e76ffe69ee7a693d [file] [log] [blame]
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.parent {
width: 200px;
height: 200px;
overflow: hidden;
-webkit-clip-path: circle(100px at 100px 100px);
}
.child {
height: 400px;
width: 200px;
margin:0;
padding:0;
background-color: green;
}
</style>
</head>
<body>
<div class="parent">
<div class="child"></div>
</div>
</body>
</html>