JSFiddle - React, Tailwind, and code Playground
HTML
<div class="head">
Head
</div>
<div class="container">
Content
<div class="push"></div>
</div>
<div class="foot">
Foot
</div>
CSS
.head {
background-color: red;
background-repeat: repeat-x;
height: 100px;
}
.push {
min-height: 150px;
position: absolute;
}
.container {
background-color: yellow;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
position: absolute;
min-height: 250px;
}
.foot {
background-color: blue;
background-repeat: repeat-x;
min-height: 100px;
bottom: 0;
}