JSFiddle - React, Tailwind, and code Playground

by jblasco

HTML

<div id="wrap">
    <div id="header"></div>
    <div id="footer"></div>
</div>

CSS

* {
    padding: 0;
    margin: 0;
}

#wrap {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    min-height: 700px;
    background-color: #F2F2F2;
}

#header {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100px;
    background-color: pink;
}

#footer{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100px;
    background-color: cyan;
}