JSFiddle - React, Tailwind, and code Playground
by the94air
HTML
<div class="parent">
<h1 id="page-title">Page Title</h1>
</div>
CSS
parent {
position: relative;
}
#page-title {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
}