JSFiddle - React, Tailwind, and code Playground

by Lalji Tadhani

HTML

<div class="parent">
      <div class="red">

  

</div>
  <div class="blue">

  </div>
  <div class="green">

  </div>

</div>

CSS

.red{
  background-color: red;
  height: 30px;
  width: 30px;
  position: absolute;
}
.blue{
  background-color: blue;
  height: 30px;
  width: 30px;
}
.green{
  background-color: green;
  height: 30px;
  width: 30px;
}