JSFiddle - React, Tailwind, and code Playground
by rohitazad
HTML
<div class="container">
<div class="leftDiv">left</div>
<div class="rightDiv">right</div>
<div class="other">middle</div>
</div>
CSS
.container{
background-color:green; width:500px;
}
.leftDiv{
background-color:red; width:250px;
height:500px;
float:left;
}
.rightDiv{
background-color:pink; width:250px;
height:500px;
float:left;
}
.other{
background-color: #FFFF00;
height:500px;
clear:both;
}