JSFiddle - React, Tailwind, and code Playground

HTML

<div class="center-me">
    This div is vertically centered.
</div>

CSS

.center-me {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #000;
}