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: circle(at 50% 50%);
    -moz-clip-path: circle(at 50% 50%);
    -ms-clip-path: circle(at 50% 50%);
    clip-path: circle(at 50% 50%);
}