JSFiddle - React, Tailwind, and code Playground

by halirgb

HTML

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

CSS

.circle{
    height:101px;
    width:101px;
    border-radius:50%;
    background-color:#000;
    position:relative;
}
.circle-body{
    height:99px;
    width:99px;
    border-radius:50%;
    background-color:red;
    position:absolute;
    top:1px;
    left:1px;
}