JSFiddle - React, Tailwind, and code Playground
by Yuval Bar-On
HTML
<div class="two">
</div>
<div class="one"></div>
CSS
div {
height: 50px;
width: 50px;
background: blue;
/* position: absolute;
top: 0;
left: 0; */
}
div.one {
border-radius: 0 2em;
}
div.two {
background: red;
border-radius: 2em 0;
}
div.circle {
background: yellow;
border-radius: 2em;
}