JSFiddle - React, Tailwind, and code Playground
by jonahe
HTML
<div id="container">
<section>
<p>
test test
</p>
<p>
test test
</p>
<p>
test test
</p>
<p>
test test
</p>
<p>
test test
</p>
<p>
test test
</p>
<p>
test test
</p>
</section>
<section>
<p>
test test
</p>
<p>
test test
</p><p>
test test
</p>
<p>
test test
</p>
<p>
test test
</p>
</section>
</div>
CSS
#container {
display: flex;
flex-wrap: wrap;
align-items: stretch;
}
section {
width: 200px;
display: inline-flex;
flex-direction: column;
border: 1px solid tomato;
}