JSFiddle - React, Tailwind, and code Playground
by trkli
HTML
<div class="el"></div>
<div class="el el-one"></div>
<div class="el el-two"></div>
CSS
.el {
position: absolute;
width: 5rem;
height: 5rem;
background: red;
}
.el-one {
background: green;
left: 3rem;
}
.el-two {
background: blue;
left: 4rem;
}