<html><head>
<title>NEGATED :first-child pseudo-class</title>
<style type="text/css">.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 }
</style>
<link rel="author" title="Daniel Glazman" href="http://glazman.org/">
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
<link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"> <!-- bogus link to make sure it gets found -->
<meta name="flags" content="">
</head>
<body>
<div>
<table class="t1" border="1">
<tbody><tr>
<td>1.1</td>
<!--[ELEMENT('.t1 td:not(:first-child)')]--><td class="red"><!--[TEXT('.t1 td:not(:first-child)')]-->green cell<!--[/TEXT('.t1 td:not(:first-child)')]--></td><!--[/ELEMENT('.t1 td:not(:first-child)')]-->
<!--[ELEMENT('.t1 td:not(:first-child)')]--><td class="red"><!--[TEXT('.t1 td:not(:first-child)')]-->green cell<!--[/TEXT('.t1 td:not(:first-child)')]--></td><!--[/ELEMENT('.t1 td:not(:first-child)')]-->
</tr>
<tr>
<td>2.1</td>
<!--[ELEMENT('.t1 td:not(:first-child)')]--><td class="red"><!--[TEXT('.t1 td:not(:first-child)')]-->green cell<!--[/TEXT('.t1 td:not(:first-child)')]--></td><!--[/ELEMENT('.t1 td:not(:first-child)')]-->
<!--[ELEMENT('.t1 td:not(:first-child)')]--><td class="red"><!--[TEXT('.t1 td:not(:first-child)')]-->green cell<!--[/TEXT('.t1 td:not(:first-child)')]--></td><!--[/ELEMENT('.t1 td:not(:first-child)')]-->
</tr>
<tr>
<td>3.1</td>
<!--[ELEMENT('.t1 td:not(:first-child)')]--><td class="red"><!--[TEXT('.t1 td:not(:first-child)')]-->green cell<!--[/TEXT('.t1 td:not(:first-child)')]--></td><!--[/ELEMENT('.t1 td:not(:first-child)')]-->
<!--[ELEMENT('.t1 td:not(:first-child)')]--><td class="red"><!--[TEXT('.t1 td:not(:first-child)')]-->green cell<!--[/TEXT('.t1 td:not(:first-child)')]--></td><!--[/ELEMENT('.t1 td:not(:first-child)')]-->
</tr>
</tbody></table>
</div>
<p>This paragraph <span>should be</span> unstyled.</p>
</body></html>