JSFiddle - React, Tailwind, and code Playground

HTML

<div class="main">
    <div class="head"><p>logo</p></div>
    <div class="content"><p>text</p></div>
    <div class="footer"><p>copyright</p></div>
</div>

CSS

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}
.main{
    min-height:100%;
}
.head {
    width: 100%;
    height: 250px;
    background-color: #336699;
}
.content {
    position:absolute;
    top:250px;
    bottom:100px;
    width: 100%;
    background-color: #99ccff;
    z-index:0;
}
.footer {
    position:absolute;
    bottom:0px;
    width: 100%;
    height: 100px;
    background-color: #336699;
    border-top: 1px solid #336699;
    z-index:1;
}