JSFiddle - React, Tailwind, and code Playground

by Kawaljit Singh

HTML

<div class="container">
<div class="box1">
</div>
<div class="box2">
</div>
</div>

CSS

.container {
  position: relative;
}
.box1,.box2 {
   width: 100px;
   height: 100px;
   position: absolute;
   border: 3px solid #4286f4;
   box-sizing: border-box;
   background: blue;
 }

.box1 {
 top: 100px;
 left: 100px;
}

.box2 {
 top: 150px;
 left: 150px;
}