JSFiddle - React, Tailwind, and code Playground

by dmitri14

HTML

<div>vertically centered text</div>

CSS

div
{
  height: 200px;
  line-height: 200px; /* <-- this is what you must define */
  vertical-align: middle;
  border: 1px solid black;
}