JSFiddle - React, Tailwind, and code Playground
by mqchen
HTML
<div class="sidebar">hello</div>
<div class="main">world</div
CSS
.sidebar {
width: 300px;
background-color: #eee;
height: 500px;
position: absolute;
}
.main {
width: auto;
background-color: #999;
height: 500px;
margin-left: 300px;
}