JSFiddle - React, Tailwind, and code Playground
by Felipe Douradinho
HTML
Veja o rodapé
<div id="footer"><span>Rodapé fixo</span></div>
CSS
#footer{
position:fixed;
left:0px;
bottom:0px;
height:30px;
width:100%;
color: #FFFFFF;
background: #000000;
}
/* Para ie6*/
* html #footer{
position:absolute;
top:expression((0-(footer.offsetHeight)+(document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight)+(ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop))+'px');
}