JSFiddle - React, Tailwind, and code Playground

by Rohit Azad

HTML

<div class="box" id="up"></div>
<div class="box" id="middle"></div>
<div class="box" id="down"></div>

CSS

.box {
  width: 400px;
  height:200px;
  position: relative;
}

#up {
  background: red;
}

#middle {
  margin-top: -50px;
  background: green;
}

#down {
  background: blue;
}