JSFiddle - React, Tailwind, and code Playground
by jpwo759
HTML
<div class="circles">
<div class="circle">1</div>
<div class="circle">2</div>
<div class="circle">3</div>
<div class="circle">4</div>
</div>
CSS
body
{
background-color: black;
}
.circles
{
font-size:50px;
}
.circle
{
line-height: 2em;
text-align: center;
color: white;
background-color: #00ff00;
border-radius: 50%;
width: 2em;
height: 2em;
float:left;
}