Hi,

I try to use a filter in order to hide css from all of the browsers,
exept MSIE 5/PC.

Given is following HTML-markup:

<div id='Nav'>
  <ul>
    <li> item 1 </li>
    <li> item 2 </li>
    <li> item 3 </li>
    <li> item 4 </li>
  </ul>
</div>


#nav li { margin: 0; }

#nav > li {           /* MSIE 4 and 5 /PC only? */
    margin-bottom: -3px;
    }

MSIE 5/PC interprets it (wrongly) as: every descendant 'LI'
of an element with the ID 'Nav' or 'nav'.

This filter is tested under W2K only.


Does anybody know wether another browser is able to interpret this too. (Mac especially!)


Thanks in advance, Uwe Kaiser




______________________________________________________________________ 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