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