JSFiddle - React, Tailwind, and code Playground

by Mladen Mihajlovic

HTML

<div class="parent"><div>hi</div></div>

CSS

.parent {
  display:grid;
  place-items:center;
  height: 100px;
  background: red;
}

.parent > div {
  background-color:yellow;
}