JSFiddle - React, Tailwind, and code Playground
by danield770
HTML
<header>header</header>
<div class="content">content</div>
CSS
*
{
margin:0;padding:0;
}
html,body,div
{
height: 100%;
}
header
{
position: absolute;
top:0;
width: 100%;
height: 100px;
background: orange;
}
.content
{
padding-top: 100px;
box-sizing: border-box;
background: tomato;
}