JSFiddle - React, Tailwind, and code Playground
by HDL52
HTML
<div id="parent">
<div id="child"></div>
</div>
CSS
#parent {
display: grid;
place-items: center;
height: 100vh;
}
#child {
background-color: red;
padding: 50px;
}
by HDL52
<div id="parent">
<div id="child"></div>
</div>
#parent {
display: grid;
place-items: center;
height: 100vh;
}
#child {
background-color: red;
padding: 50px;
}