JSFiddle - React, Tailwind, and code Playground

by brian

HTML

<div class="container">
    <div class="content"></div>
    <div class="footer"></div>
</div>

CSS

.container{
    padding-bottom: 150px;
    position: relative;
}
.content{
    height: 400px;
    background: lightblue;
}
.footer {
    height: 150px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    background: lightgray;
}