views:

55

answers:

2

I have a div fix on bottom of the page it is working fine in IE7, IE8, FF and chrome. But in IE6 it is not fixing itself on the bottom how can I fix that.

+1  A: 

IE6 doesn't support position: fixed natively. There are some workarounds:

Tatu Ulmanen
+1  A: 

Suggestions:

  • use a CSS "reset"
  • use a CSS framework
  • use conditional styles (browser dependent) to work around such problems
  • use JavaScript only as a very last resort

More information:

http://www.dezinerfolio.com/2009/02/20/css-standards-best-practices

See also the three links at the end of the Reset section.

fviktor