JSFiddle - React, Tailwind, and code Playground

by Kyle

HTML

<div id="fixed-menu">
    Navigation options or whatever.
</div>
<div class="spacer">
    &nbsp;
</div>
<div id="content">
    Content.
</div>

CSS

#fixed-menu
{
    position: fixed;
    width: 100%;
    height: 75px;
    background-color: #f00;
    padding: 10px;
}

.spacer
{
    width: 100%;
    height: 95px;
}

#content
{
    width: 100%;
    height: 600px;
    background-color: #00f;
    padding: 10px;
}