1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
4 <title>NEGATED :nth-child() pseudo-class</title>
5 <style type="text/css"><![CDATA[.red { background-color : red }
6 ul > li:not(:nth-child(odd)) { background-color : lime }
7 ol > li:not(:nth-child(even)) { background-color : lime }
8 table.t1 tr:not(:nth-child(-n+4)) { background-color : lime }
9 table.t2 td:not(:nth-child(3n+1)) { background-color : lime }
10 table.t1 td, table.t2 td { border : thin black solid }]]></style>
11 <link rel="first" href="css3-modsel-1.xml" title="Groups of selectors"/>
12 <link rel="prev" href="css3-modsel-72b.xml" title="NEGATED :root pseudo-class"/>
13 <link rel="next" href="css3-modsel-73b.xml" title="NEGATED :nth-child() pseudo-class"/>
14 <link rel="last" href="css3-modsel-d4.xml" title="Dynamic updating of :first-child and :last-child"/>
15 <link rel="up" href="./index.html"/>
16 <link rel="top" href="../../index.html"/>
20 <li>First list item</li>
21 <li class="red">This second list item should have a green background</li>
23 <li class="red">This fourth list item should have a green background</li>
24 <li>Fifth list item</li>
25 <li class="red">This sixth list item should have a green background</li>
28 <li class="red">This first list item should have a green background</li>
29 <li>Second list item</li>
30 <li class="red">This third list item should have a green background</li>
31 <li>Fourth list item</li>
32 <li class="red">This fifth list item should have a green background</li>
33 <li>Sixth list item</li>
36 <table border="1" class="t1">
58 <td>Green row : 5.1</td>
63 <td>Green row : 6.1</td>
69 <table class="t2" border="1">
72 <td class="red">green cell</td>
73 <td class="red">green cell</td>
75 <td class="red">green cell</td>
76 <td class="red">green cell</td>
78 <td class="red">green cell</td>
82 <td class="red">green cell</td>
83 <td class="red">green cell</td>
85 <td class="red">green cell</td>
86 <td class="red">green cell</td>
88 <td class="red">green cell</td>
92 <td class="red">green cell</td>
93 <td class="red">green cell</td>
95 <td class="red">green cell</td>
96 <td class="red">green cell</td>
98 <td class="red">green cell</td>