JSFiddle - React, Tailwind, and code Playground

by Lyndsy Simon

HTML

<section>
    <nav>Navigation goes here</nav>
    <article>Content goes here</article>
    <div>Ads go here</div>
</section>

CSS

section { display: flex }
section > * { flex: 1 }

/* colors, for clartiy in the example */
nav { background-color: red }
article { background-color: green }
div { background-color: blue }