JSFiddle - React, Tailwind, and code Playground
Easy peasy CSS centering.
HTML
<div>
<h1>headline</h1>
</div>
CSS
div {
border: 1px solid red;
display: grid;
height: 200px;
place-items: center;
width: 200px;
}
<div>
<h1>headline</h1>
</div>
div {
border: 1px solid red;
display: grid;
height: 200px;
place-items: center;
width: 200px;
}