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: inset(50px 20px round 50px);
    -ms-clip-path: inset(50px 20px round 50px);  
    clip-path: inset(50px 20px round 50px);

}