JSFiddle - React, Tailwind, and code Playground

by mrnobody

HTML

<div id="h">Lorem</div>
<div id="c">Lorem ipsum dolor sit</div>

CSS

body, html {
    margin: 0;
    height: 100%;
}
#h {
    background: yellow;
    height: 100px;
    
    position: absolute;
    width: 100%;
}
#c {
    background: red;
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto;
    max-width: 500px;
    
    padding-top: 100px;
    box-sizing: border-box;
}