Fixed Footer

PHOTO EMBED

Wed Jun 03 2020 10:28:04 GMT+0000 (Coordinated Universal Time)

Saved by @Amna #css

#footer {
   position:fixed;
   left:0px;
   bottom:0px;
   height:30px;
   width:100%;
   background:#999;
}

/* IE 6 */
* 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');
}
content_copyCOPY

https://css-tricks.com/snippets/css/fixed-footer/