CSS 3 Module <== Test # ==>
W3C Selectors 5 of 78
Testing Date Revision
Attribute value selector (ID #6) 11-july-2001 1.0
This address should have a green background because the selector in last rule does not apply to inner SPANs.
address { background-color : red }
address[title="foo"] { background-color : lime }
span[title="a"] { background-color : red }
<address title="foo">
<span title="b">This address should </span>
  <span title="aa">have a green background because the
  selector in last rule does not apply to inner SPANs.
</span>
</address>