JSFiddle - React, Tailwind, and code Playground
HTML
<div id="parent">
<div id="child">hello world</div>
</div>
CSS
#parent {
width:50vw;
height:50vh;
background-color:gray;
display: flex;
}
#child {
margin: auto auto;
}