CSS 3 Module <== Test # ==>
W3C Selectors 12 of 127
Testing Date Revision
Class selectors (ID #13) 11-july-2001 1.0
li { background-color : red }
.t1 { background-color : lime }
li.t2 { background-color : lime }
.t3 { background-color : red }
<ul>
  <li class="t1">This list item should have green background because its class is &quot;t1&quot;</li>
  <li class="t2">This list item should have green background because its class is &quot;t2&quot;</li>
  <li class="t2">
<span class="t33">This list item should have green background because 
        the inner SPAN does not match SPAN.t3</span>
</li>
</ul>