JSFiddle - React, Tailwind, and code Playground

by vaibhav2812

HTML

<div class="container">
  <div class="first"></div>
  <div class="second"></div>

</div>

CSS

.container {
  width: 200px;
  border: 1px solid grey;
  position: relative;
}

.first {
  height: 200px;
  width: 200px;
  background-color: red;
  position: relative;
}

.second {
  height: 100px;
  width: 100px;
  background-color: blue;
  position: absolute;
}