Recently, I've been exploring how to create a rectangle with a rounded bottom side. However, my research only revealed how to achieve a rounded side, not rounded corners.
.figure {
height: 400px;
width: 200px;
background-color: black;
border-bottom-left-radius: 100%30px;
border-bottom-right-radius: 100%30px;
}
<div class="figure"></div>
Despite following these instructions, I couldn't replicate the look of this image.
https://i.sstatic.net/BvUjb.jpg
Your assistance in achieving this design would be greatly appreciated. Thank you!