Drawing an Egg with CSS
Drawing an egg with CSS is simpler than many people imagine. So simple that you can do it with just two properties:
.egg {
aspect-ratio: 3 / 4;
border-radius: 100% / 125% 125% 80% 80%;
}
Yes. That’s it! Apply that to a block element, and it will...
alvaromontoro.hashnode.dev2 min read