JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<div class="centered">this is how i do it.</div>
</div>
CSS
.centered {
position: fixed;
top: 50%;
left: 50%;
/* bring your own prefixes */
transform: translate(-50%, -50%);
background-color:grey;
}