JSFiddle - React, Tailwind, and code Playground

HTML

<div class="box">
  First box
</div>

<div class="box second-box">
  Second box
</div>

<div class="box">
  Third box
</div>

<div class="box">
  Fourth box
</div>

<div class="box">
  Fifth box
</div>

CSS

.box{  
  position: relative;  
  height: 100px;  
  width: 100px;  
  float: left;  
  /* Little Decoration*/  
  background: green;  
  padding: 10px;  
  margin-right: 20px;  
  z-index: 100;  
  box-shadow: 0 0 5px #333;  
 }  
 .second-box{  
  top: 40px;  
  right: 40px;  
  z-index: 200;  
 }