JSFiddle - React, Tailwind, and code Playground
by HDL52
HTML
<div id="parent">
<div id="child"></div>
</div>
CSS
#parent {
position: relative;
height: 100vh;
}
#child {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 50px;
background-color: red;
}