How to create fancy shape using CSS and html5 , I have a section in which I would like to create certain shape using css
Here is jsfiddle : live demo
img {
height: 145px;
width: 145px;
border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
<div class="flex-container">
<img src="https://i.imgur.com/xSLLSKk.png" />
</div>
And here are the expected results:
Note: without using mask.
Unfortunately, I am not getting the same result as expected, what do I need to change here to get exactly as the image above?