JSFiddle - React, Tailwind, and code Playground
by Dean Kamali
HTML
<div id="circle"></div>
<div class="square"></div>
CSS
#circle {
width:200px;
height:200px
border-radius:100px;
background-color:green;
}
.square {
width:200px;
height:200px
background-color:red;
}