JSFiddle - React, Tailwind, and code Playground

by techsin

HTML

<div id="fixed">Sidebar</div>
  <div id="fluid">Content</div>

CSS

#fixed, #fluid{
    padding:20px;
}
#fixed {
    float:left;
    width:150px;
    background-color:#f5f5f5;
}
#fluid {
    overflow:hidden;
    background-color:#999999;
}