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:700px;   
    background-color:green;
}
#main {
 
  width:400px;
   height:200px;
   background-color:blue;
  float:left;
}
#sidebar{
 
  width:100px;
   height:200px;
   background-color:red;
float:right;
}