JSFiddle - React, Tailwind, and code Playground

by ruisoftware

HTML

<div id="head">HEAD</div> 
<div id="body">BODY</div> 
<div id="foot">FOOTER</div>

CSS

#head {
    background-color: yellow;
}

#foot{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: green;
}