JSFiddle - React, Tailwind, and code Playground
HTML
<div class="parent"><div>hi</div></div>
CSS
.parent {
display:grid;
place-items:center;
height: 100px;
background: red;
}
.parent > div {
background-color:yellow;
}
<div class="parent"><div>hi</div></div>
.parent {
display:grid;
place-items:center;
height: 100px;
background: red;
}
.parent > div {
background-color:yellow;
}