Skip to content

Instantly share code, notes, and snippets.

@ekstinehickorysnippets
Created July 7, 2012 10:22
Show Gist options
  • Save ekstinehickorysnippets/3065776 to your computer and use it in GitHub Desktop.
Save ekstinehickorysnippets/3065776 to your computer and use it in GitHub Desktop.
CSS: Footer Fixed
#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');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment