JSFiddle - React, Tailwind, and code Playground

by Blanca B

HTML

<div id="abuelo">
<div id="padre">
<div id="elemento"></div>
</div>
</div>

CSS

#abuelo {
  background-color: pink;
  width: 340px;
  height: 223px;
}

#padre {
  background-color: paleturquoise;
  width: 240px;
  height: 160px; 
  position: relative;
  left: 50px;
}

#elemento {
  background-color: plum;
  width: 140px;
  height: 93px; 
}