JSFiddle - React, Tailwind, and code Playground
HTML
<div class="center">
<p>Text</p>
</div>
CSS
.center{
position: fixed;
top: 50%;
left: 50%;
margin-top: -50px;
margin-left: -100px;
border:5px solid black;
}
<div class="center">
<p>Text</p>
</div>
.center{
position: fixed;
top: 50%;
left: 50%;
margin-top: -50px;
margin-left: -100px;
border:5px solid black;
}