JSFiddle - React, Tailwind, and code Playground

by dylanjha

HTML

<div class="outer">
    <div class="inner">
        
    </div>
</div>

CSS

.outer {
    width: 400px;
    height: 400px;
}

.inner { 
    background-color: green;
    width: 200px;
    height: 200px;   
    border-radius: 50%;
    margin: 20px auto
}