Is this correct and does it work correctly across browsers?
<div id="test">
Some stuff
<div id="anotherTest">
More stuff
</div>
Even more stuff
</div>
CSS...
#test #anotherTest {
color:red;
}
Only "More stuff" would be in red.
I know I could use classes and there are several different ways to achieve this but basically I'm asking about selecting an element with CSS via several IDs?
Thanks.