JSFiddle - React, Tailwind, and code Playground

by Jimmy Sawczuk

HTML

<div id="ctr">
    <div id="left">
    </div>
    <div id="right">
        <div id="content">
            yay
        </div>
    </div>
</div>

CSS

#ctr { width: 100%; }
#left { position: absolute; left: 0px; top: 0px; bottom: 0px; width: 100px; }
#right { position: absolute; left: 100px; top: 0px; bottom: 0px; right: 0px; }

#left { background-color: blue; }
#right { background-color: green; }