JSFiddle - React, Tailwind, and code Playground

by Daniel Cheung

HTML

<div class="wrap">
    <div></div>
    <div></div>
    <div></div>
</div>

CSS

.wrap {
    text-align: center;
    position:absolute;
    margin:auto;
    left:0; right:0;
    top:0; bottom:0;
    width:100%;
height:100px;
    display:block;
}
div div {width: 100px; height: 100px; background: #30353b; border-radius: 100%; display: inline-block;

}