JSFiddle - React, Tailwind, and code Playground

by Ajey

HTML

<div class="parent">
  <div class="child">

  </div>
</div>

CSS

.parent {
  width: 100px;
  height: 100px;
  background: red;
}

.child {
  width: 50px;
  height: 50px;
  background: blue;
}