JSFiddle - React, Tailwind, and code Playground

by David Storey

HTML

<div class="clip-test"></div>

CSS

.clip-test {
    width: 200px;
    height: 200px;
    background-color: green;
    -webkit-clip-path: ellipse(40% 20%);
    -ms-clip-path: ellipse(40% 20%);  
    clip-path: ellipse(40% 20%);

}