nth-child-of-classname.html (737B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>:nth-child with .className selector list argument</title> 5 <link rel="help" href="https://drafts.csswg.org/selectors-4/#child-index"> 6 <link rel="match" href="nth-child-of-classname-ref.html"> 7 <style> 8 p:nth-child(even of .webkit, .fast) { 9 background-color: lime; 10 } 11 </style> 12 </head> 13 <body> 14 <p>This test the styling of paragraphs with :nth-child(An+B of selector). If the test succeed, paragraphs that say "green" should have a green background.</p> 15 <p class="webkit">White</p> 16 <p>White</p> 17 <p>White</p> 18 <p class="fast">Green!</p> 19 <p>White</p> 20 <p>White</p> 21 <p class="webkit">White</p> 22 <p>White</p> 23 <p class="webkit">Green!</p> 24 <p>White</p> 25 </body> 26 </html>