JSFiddle - React, Tailwind, and code Playground

by poonia

HTML

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

CSS

div {
    border-radius: 50%;
}
.outer{
    border: 2px solid black;
    position: absolute;
    top: 10px;
    left: 10px;
    height: 50px;
    width: 50px;
    background-color: green;
}
.inner {
    position: absolute;
    top: 12px;
    left: 12px;
    height: 50px;
    width: 50px;
    background-color: red;
}

.outer2{
    border: 2px solid black;
    position: absolute;
    top: 10px;
    left: 80px;
    height: 50px;
    width: 50px;
    background-color: green;
}