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(closest-side at center) ;
    -ms-clip-path: ellipse(closest-side at center) ;  
    clip-path: ellipse(closest-side at center) ;

}