Code Snippets Gallery
Fixed Positioning in IE 6
* { margin:0; padding:0; }
html, body {
height: 100%;
}
body #fixedElement {
position:fixed !important;
position: absolute; /*ie6 and above*/
top: 0;
right: 0;
}
#page-wrap {
width: 600px;
margin: 0 auto;
font: 16px/2 Georgia, Serif;
}The 100% height on the body and html stuff is in case you want to do fixed positioning along the bottom edge of the browser window.
Look like doe’t work on IE6
yeah he’s right
or you do it over expressions.. like this:
this is for position fixet on TOP
This tutorial saved my life. I didn’t think this was possible in IE6. Thank you, thank you, thank you.
how does it worked for you?
Sorry. Not working in IE6
Not working for me too