JSFiddle - React, Tailwind, and code Playground

by kodjoe mambi

HTML

<header>Header</header>
<div class="outer">
    <span class="banner">LOGO</span>
</div>


<div class="content">Content</div>

CSS

header {
    background-color: #ccc;
    width: 100%;
    position: fixed;
    top: 0;
    bottom: auto;
}

.outer {
    background-color: #555;
    position: relative;
    height: 200px;
}








.content {
    height: 1500px;
    color: blue;
    background-color: #fff;
    margin-top: 0px;
}