CSS 3 Module <== Test # ==>
W3C Selectors 53 of 65 of the static tests category
Testing Date Revision
NEGATED :first-child pseudo-class (ID #77) 11-july-2001 1.0
1.1 green cell green cell
2.1 green cell green cell
3.1 green cell green cell

This paragraph should NOT AT ALL have a green background

.red { background-color : red }
.t1 td:not(:first-child) { background-color : lime }
p > *:not(:first-child) { background-color : lime }
table.t1 td { border : thin black solid }
<div align="center">
<table class="t1" border="1">
  <tr>
    <td>1.1</td>
    <td class="red">green cell</td>
    <td class="red">green cell</td>
  </tr>
  <tr>
    <td>2.1</td>
    <td class="red">green cell</td>
    <td class="red">green cell</td>
  </tr>
  <tr>
    <td>3.1</td>
    <td class="red">green cell</td>
    <td class="red">green cell</td>
  </tr>
</table>
</div>
<p>This paragraph should NOT AT ALL
          <span>have a green background</span>
</p>