JSFiddle - React, Tailwind, and code Playground

by Milan Gladiš

HTML

<div id="wrapper">
    <div id="middle">
    <div id="box"></div>
    </div>
</div>

CSS

#wrapper {
    position: absolute;
}

#middle {
    border-radius: 100px;
    overflow: hidden; 
}

#box {
    width: 300px; height: 300px;
    background-color: #cde;
}