JSFiddle - React, Tailwind, and code Playground

by charlescarver

HTML

<header>Header</header>
<section>Content</section>

CSS

header{
    background:red;
    position:fixed;
    height:50px;
    width:100%;
}

section{
    padding-top:50px;
    height:1000px;
    background:blue;
}