Div in IE6 is not fixing itself on the bottom
I have a div fix on bottom of the page it is wo开发者_JAVA技巧rking fine in IE7, IE8, FF and chrome. But in IE6 it is not fixing itself on the bottom how can I fix that.
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.
IE6 doesn't support position: fixed
natively. There are some workarounds:
- http://www.howtocreate.co.uk/fixedPosition.html
- http://tagsoup.com/cookbook/css/fixed/
精彩评论