JSFiddle - React, Tailwind, and code Playground

by victorxpp

HTML

<div class="center">Hello World</div>

CSS

.center {
    position: absolute;
    border: 1px solid blue;
    width: 100px;
    height: 50px;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -50px;
}