JSFiddle - React, Tailwind, and code Playground
by willemvb
HTML
<div id="left">
this is the left
</div>
<div id="right">
this is the right
</div>
CSS
html, body{ height: 100%; margin:0; }
#left { background: red;
float: left;
height: 100%;}
#right {
background: yellow;
height: 100%;
}