JSFiddle - React, Tailwind, and code Playground
by Jeremy Lewis
HTML
<body>
<div id="top-banner"></div>
<div id="content"></div>
<div id="bottom"></div>
</body>
CSS
body {
margin: 0px 0px 0px 0px;
background: #ffffff;
}
#top-banner {
position: fixed;
background: #990000;
height: 100px;
width: 100%;
}
#content {
width: 100%;
height: 300px;
background: #808080;
}
#bottom {
background: #115043;
width: 100%;
height: 600px;
}
}