JSFiddle - React, Tailwind, and code Playground

by mennovanslooten

HTML

<div id="top">xxx</div>
<div id="main">yyy</div>
<div id="bottom">zzz</div>

CSS

body, html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

div {
    position: absolute;
}

#top {
    background: yellow;
    left: 0;
    top: 0;
    right: 0;
    height: 200px;
}

#main {
    background: green;
    left: 0;
    top: 200px;
    right: 0;
    bottom: 100px;
}

#bottom {
    background: blue;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100px;
}