JSFiddle - React, Tailwind, and code Playground

by Sebastian Brosch

HTML

<!-- table solution for http://stackoverflow.com/questions/33362751/ -->
<div class="container">
    <h1>Heading Number 1</h1>
</div>

CSS

.container {
    background-color:red;
    display:table;
    height:180px;
    text-align:center;
    width:500px;
}
h1 {
    display:table-cell;
    margin:0;
    padding:0;
    vertical-align:middle;
}