Posted by Nikita the Spider on 07/18/06 04:07
In article <op.tcu126m1k9qmtn@latitude>,
"Y J Landro" <debatt@strilen.net> wrote:
> The discussion was about "position:fixed" and how IE dealt with it. If I
> am not too mistaken, IE will treat position:fixed as position:absolute. I
> can live with that.
ISTR that IE doesn't just treat position:fixed as position:absolute but
instead mishandles it rather badly. What's working for me is to add this
to my HTML:
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="ie.css">
<![endif]-->
And then in ie.css I add rules to override position:fixed with this:
position: absolute ! important;
See my sig for a live example.
I think I've read that IE7 supports position:fixed but I have not tested
it myself.
Cheers
--
Philip
http://NikitaTheSpider.com/
Whole-site HTML validation, link checking and more
[Back to original message]
|