JSFiddle - React, Tailwind, and code Playground

Easy peasy CSS centering.

by Travis Almand

HTML

<div>
  <h1>headline</h1>
</div>

CSS

div {
  border: 1px solid red;
  display: grid;
  height: 200px;
  place-items: center;
  width: 200px;
}