JSFiddle - React, Tailwind, and code Playground

by Lucas Krause

HTML

<div class=a></div>
<div class=b>
    <p>hello world.</p>
</div>

CSS

html, body {
    margin:0;
    padding:0;
    
}
html {
    background:royalblue;
    height:100%;
}
body {
    background:#eee;
    display:table;
    min-height:100%;
    width:100%;
}

.a {
    display:table-cell;
    background:tomato;
}

.b::before, .b::after {
    content:"";
    display:table;
}