/ Published in: CSS
IE6 Doesn't recognize position: fixed. Here is a little hack to fix it. First you must set IE6 to standards mode. You do this by including a strict doctype in the page.
Once IE6 is in strict mode include the following in a conditional comment. Anything you want fixed, set as absolute. The example sticks an image to the bottom left corner.
Expand |
Embed | Plain Text
/* IE6 Fixed position fix */ html, body { height: 100%; overflow: auto; } body #cornerImage { position: absolute; bottom: 0; }
Comments
Subscribe to comments
You need to login to post a comment.

You can use XHTML 1.0 Transitional too. By using the "important!" declaration, you don't need an conditional comment anymore:
tested in ie6, ie7, ie8, ff2, ff3, safari3