>
> Here is a link illustrating what I mean:
>
> http://thinkplan.org/menupersist.jpg
>
> What are peoples' thoughts on this kind of menu? I'm told that IE 6
> doesn't support this kind of menu...IIRC, it involves
>
> position: fixed;
>
> How key is IE 6, and are people simply not going with this kind of
> fixed menu?
You can use the following for IE6, but be aware that CSS expressions are
evil!
#elementToBeFixed {
position:fixed;
}
* html {
background: url(LOL);
}
* html #elementToBeFixed {
position: absolute;
top: expression(documentElement.scrollTop);
}
And yes, I have "LOL" in there, that's to show that IE6 can be fun. Besides,
it saves a HTTP request ;-)
--
Regards,
Thierry
www.tjkdesign.com | www.ez-css.org | @thierrykoblentz
*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [email protected]
*******************************************************************