I've been attempting to create a "circle-Egg" in CSS, but I'm encountering some difficulties.
I have an SVG circle that I want to use on my website and insert an image inside it. However, using Pattern and Image to insert an image inside the SVG is not working for me because I can't control the background size and repeat.
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="115" height="120"><defs><path id="a" d="M93.174 120C124.931 120 148 93.748 148 61.364S127.605 0 95.849 0C64.092 0 33 28.98 33 61.364S61.418 120 93.174 120z"/></defs><use fill="#00C1B1" fill-rule="evenodd" transform="translate(-33)" xlink:href="#a"/></svg>
So, I have decided to create this image using CSS.
Please note the top-left corner Circle
.circle{
margin-top:50px;
margin-left:50px;
background-color:#00C1B1;
border-radius: 70% 50% 60% 60% / 70% 70% 55% 60%;
height: 120px;
width:115px;
}
<div class="circle">
</div>
I have experimented with the border-radius property, but it doesn't seem to work for me.
Thanks