JSFiddle - React, Tailwind, and code Playground

by Alexander Malinov

HTML

<div>
     <h1>Yes</h1>
</div>

CSS

body {
    width: 100%;
    height: 100%;
}
div {
    position: absolute;
    height: 100%;
    width: 100%;
    display: table;
}
h1 {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    text-align: center;
    font-size: 10em;
    font-family: Georgia, Helvetica, Arial, sans-serif;
    color: #444;
}