JSFiddle - React, Tailwind, and code Playground
by Tilwin Joy
HTML
<div id='header'></div>
<div id="content">
<div id="sidebar"></div>
</div>
CSS
*{
margin:0;
padding:0;
}
html, body {
height: 100%;
}
#header{
height:10%;
background:hotpink;
}
#content {
position:relative;
width: 80%;
padding-left:20%;
min-height: 90%;
height:90%;
background: silver;
color: white;
}
#sidebar {
position:absolute;
top:0;
left:0;
bottom:0;
width: 20%;
background: dodgerblue;
}