> @Christian: * html #selector { } is NOT seen by IE7. However, they
> haven't got all the bugs out, so conditional comments are going to be
> necessary - I'm still seeing whitespace between <li> items, which I
> had been fixing with a * html li { height: 1%; }...now that doesn't
> work.
>This is a fundamental problem with the Holly hack (sorry, Holly :-) Remember what the hack does: it triggers the "hasLayout" property to become true. You can also trigger hasLayout using the non-standard MS-only extension "zoom", but you don't want to have stuff get zoomed on future browsers which support it (or on IE), so zoom it by a factor of 1. In other words, replace height: 1%; with zoom: 1; and all will be well. (Well, it is for me...) HTH, Nick. -- Nick Fitzsimons http://www.nickfitz.co.uk/ ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
