> Even if I'm interpreting this correctly, it leaves open the question of which
> browsers do or don't support it, which is all that
> really matters in the end.

Testing this Style sheet:

p#blue {color: blue;}
p.red  {color: red;}
p#blue.red {color: green;}
p.red#blue {color: yellow;}


with this markup:

<p id="blue">aaa</p>
<p class="red">bbb</p>
<p id="blue" class="red">ccc</p>
<p class="red" id="blue">ddd</p>

I get the following result for IE6SP1, Firefox 2.006 and Opera 9.23 alike:

1. p: blue
2. p: red
3. p: yellow
4. p: yellow

So it seems to work at least in these three browsers (on Windows2000)

Cheers,

jens

-- 
Jens Brueckmann
http://www.yalf.de
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to