JSFiddle - React, Tailwind, and code Playground
by thomas4g
HTML
<div id="container">
<div id="main">
My Main Content
</div>
<div id="sidebar">
My SideBar
</div>
<div style="clear:both"></div>
</div>
CSS
#container {
width:100%;
background-color:green;
}
#main {
width:60%;
height:200px;
background-color:blue;
float:left;
}
#sidebar{
width:40%;
height:200px;
background-color:red;
float:right;
}