JSFiddle - React, Tailwind, and code Playground

by steve

HTML

<div id='img'>
  IMG
</div>  

<div id='sidebar'>
  SIDEBAR
  <br />
  <br />
  <br />
</div>  

<div id='mainContent'>
  MAIN CONTENT
  <br style='clear:both' />
</div>

CSS

#img { 
  background:green;   
  float:left;   
  height:100px;   
  width:200px; 
}  

#sidebar {   
  background:red;   
  clear:both;   
  float:left;   
  width:200px; 
}  

#mainContent {   
  background:yellow;   
  margin-left:200px; 
}