JSFiddle - React, Tailwind, and code Playground
HTML
<div id="header"></div>
<div id="sidebar"></div><div id="content"></div>
<div id="footer"></div>
CSS
div
{
width:50px;
height:50px;
}
#sidebar
{
background-color:#ccc;float:right;
}
#content
{
width:400px;
background-color:#000;
}
#header
{width:450px;
background-color:#f00;}
#footer
{width:450px;
background-color:#00f;clear:both;}