blob: 85e3eb25186c8cc1aeb3c54ccd6c6ae9a06ffa0b [file]
<!DOCTYPE html>
<html>
<head>
<style>
.clipping {
margin: 50px;
width: 300px;
height: 200px;
border: 5px solid black;
border-radius: 50px;
border-bottom-right-radius: 100px;
padding: 20px;
background-color: green;
background-clip: content-box;
}
</style>
</head>
<body>
<div class="clipping"></div>
</body>
</html>