JSFiddle - React, Tailwind, and code Playground
by IPWright83
HTML
<div>
<div class="circle" style="width: 100px; height: 100px;" />
<div class="circle" style="width: 50px; height: 50px; left: 25px; top: 50px;" />
</div>
CSS
.circle {
border: thin dashed red;
border-radius: 50%;
position: relative;
}