JSFiddle - React, Tailwind, and code Playground
by chovy
HTML
<div id="body">
<nav>nav here</nav>
<section>content here</section>
</div>
CSS
#body { background: #eee; height: 500px; }
nav { float: left; background: #fee; display: block; width: 100px; height: 100%; }
section { background: #efe; display: block; height: 100%; }