JSFiddle - React, Tailwind, and code Playground

by abude

HTML

<div class="circle"> </div>

CSS

.circle {
    position: relative;
    margin: 2em auto;
    width: 16em; height: 16em;
    border-radius: 50%;
    background: #848482;
    border: 5px solid white;
    border-top-color: lightgrey;
    border-left-color: red;
    border-bottom-color: red;
    border-right-color: red;      
   
}