JSFiddle - React, Tailwind, and code Playground

by Niranjan Borawake

HTML

<div id="bodyContainer">
    <div id="maincontent">Dynamic Content
    </div>
    <div id="footer">StaticContent</div>
</div>

CSS

#bodyContainer {
    min-height: 100%;
    position: relative;
}
#maincontent{
    height : 200px;
    background-color : green;
    padding-bottom: 60px;
    width : 100%;
}
#footer{
    background-color: black;
    bottom: 0;
    color: #FFFFFF;
    height: 48px;
    position: absolute;
    width: 100%;
}