blob: 8547723eb65e9851322dc4a18282c7f265f49509 [file] [edit]
<!DOCTYPE html>
<html>
<head>
<style>
.bordered {
margin: 50px;
border: 100px solid green;
border-bottom: none;
border-radius: 16px;
width: 300px;
height: 100px;
background: linear-gradient(transparent, black);
}
#obscurer {
position: absolute;
background-color: gray;
top: 140px;
left: 150px;
width: 320px;
height: 120px;
}
</style>
</head>
<body>
<div class="bordered"></div>
<div id="obscurer"></div>
</body>
</html>