JSFiddle - React, Tailwind, and code Playground
by bosworth99
HTML
<div id="container">
<div class="left full">
<div id="contents"></div>
</div>
<div class="center full"></div>
<div class="right full"></div>
<div id="clear"></div>
</div>
CSS
div#container{
background-color:green;
}
div.full{
float:left;
width:33%;
height:100%;
position:relative;
}
div.left{
background-color:#CCCCCC;
}
div.center{
background-color:#EEEEEE;
}
div.right{
background-color:#BBBBBB;
}
div#contents{
background-color:red;
position:relative;
width:5px;
height:200px;
}