JSFiddle - React, Tailwind, and code Playground

by aasthatuteja

HTML

<div id="site_wrapper">
    <div id="site_header">Header</div>
</div>

CSS

div#site_wrapper {
    max-width:1500px;
    min-width:900px;
    margin: 0 auto;
}
div#site_header {
    position:fixed;
    z-index:10;
    height:160px;
    width:1500px;
    background-color:#ffff00;
}