JSFiddle - React, Tailwind, and code Playground

by Sebastian Brosch

HTML

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

CSS

.container {
    align-items:center;
    background-color:red;
    display:flex;
    height:180px;
    text-align:center;
    width:500px;
}
h1 {
    margin:0;
    padding:0;
    width:100%;
}