JSFiddle - React, Tailwind, and code Playground
by Neal
HTML
<div id="container">
<div id="left">Left.</div>
<div id="box">This is a box.</div>
<div id="right">Right.</div>
</div>
CSS
#left{
float: left;
background: green;
width: 50px;
}
#right{
float: right;
background: red;
width: 50px;
}
#container{
background: blue;
width: 500px;
}
#box{
background: orange;
width: 400px;
float: left;
}