JSFiddle - React, Tailwind, and code Playground

by Pik_at

HTML

<div>
    <header>
        <h1>Hello world</h1>
        <h2>Again hello</h2>
    </header>
</div>

CSS

div {
    width: 300px;
    height: 300px;
    background-color: #eee;
    display: table;
}
header {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}