Thursday, August 19, 2010

Simple Method to FIX , Position:FIXED in IE6

* { margin:0; padding:0; }
html, body {
height: 100%;
overflow:auto;
}
body #fixedElement {
position:fixed !important;
position: absolute; /*ie6 and above*/
bottom: 0;
}



cccc


1 comment: