JSFiddle - React, Tailwind, and code Playground
by Praveen Kumar Purushothaman
HTML
<div class="wrap">
<div class="left">
Some text<br>
Some text<br>
Some text<br>
Some text<br>
Some text<br>
Some Text
</div>
<div class="right fc">
Some text<br>
Some text<br>
Some text
</div>
<div class="right">
Some text<br>
Some text<br>
Some text
</div>
</div>
CSS
.wrap {width: 220px;}
.wrap div {float: left; width: 100px; padding: 5px;}
.wrap .left {background: #f99; padding: 10px 5px;}
.right {background: #9f9; float: right; clear: right;}
.right.fc {background: #99f; clear: none;}