JSFiddle - React, Tailwind, and code Playground
HTML
<div id="example">centered text</div>
CSS
#example
{
position: fixed;
/* center the div */
right: -1000%;
left: -1000%;
margin-right: auto;
margin-left: auto;
/* give it dimensions */
min-height: 10em;
width: 800%;
/* just for example presentation */
top: 5em;
background-color: blue;
text-align: center;
color: gold;
}