JSFiddle - React, Tailwind, and code Playground

by dfreedm

HTML

<div id="host">
    <div id="inner">Foo Bar</div>
</div>

CSS

html, body {
    height: 100%;
}
#host {
    display: -webkit-flex;
    -webkit-flex-direction: column;
    border: 5px solid green;
}
#inner {
    -webkit-flex: 1;
    border: 5px solid black;
}