JSFiddle - React, Tailwind, and code Playground
by IllusionMH
HTML
<div id="container">
<div id="left">Left</div>
<div id="right">Right</div>
<div id="content">Content</div>
</div>
CSS
#left{
float: left;
height: 100px;
width: 98px;
border: 1px solid red;
}
#right{
float: right;
height: 150px;
width: 118px;
border: 1px solid green;
}
#content {
margin: 0 120px 0 100px;
height: 200px;
border: 1px solid blue;
}
#content:after {
clear: both;
}