JSFiddle - React, Tailwind, and code Playground

by kevinPHPkevin

HTML

<div class="wrapper">
<div class="inner">Some text </div>
</div>

CSS

body, html {
    width:100%;
    height:100%;
}
div.wrapper {
    width:100%;
    height:100%;
    display: table;
}
div.inner {
    display: table-cell;
    vertical-align: middle;
    margin: 0 auto;
    width:auto;
    text-align:center;
    
}