Angela Trigg wrote:
> * html .rollover ul { padding: 10px 10px 10px 0px; /*for padding 
> issue on IE/WIN 5.x*/ p\adding: 10px 10px 10px 10px; /*IE6 should 
> read this, right? but's not */ }

Get '\' out of the 'a' to 'f' area, as IE/win will see that as a (sort
of) hex-value and discard the property.

paddin\g: value; /* will work */

> * html .rollover ul li { width: 95px; /*width issue on IE/WIN 5.x*/ 
> w\idth: 105px; _width: 101px; /*reset width IE/WIN 6.x but problem 
> is, it also is read by IE 5*/ }

Leading underscores are for _all_ IE5+/win.

Working filters for IE/win only.

@media all { /* keeps IE-Mac out */
* html selector { property: value;} /* IE5.0 + 5.5 + 6 win */
* html selector { property/**/: value;} /* IE5.5 win */
* html selector { propert\y: value;} /* IE6 win */
}

Most IE/win filters can be found here:
<http://www.dithered.com/css_filters/css_only/index.php>
...the rest is slightly outdated.

        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
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/

Reply via email to