:nth-child(odd)
:nth-child(2n+1) - same as odd
:nth-child(even)
:nth-child(2n) - same as even
:nth-child(2)
:nth-child(3n)
:nth-child(3n+1)
:nth-child(3n-1)
:nth-child(-n+3)
:nth-child(n)
:nth-child(-n) - same as n
:nth-child(+n) - same as n
:nth-child(0n+1)
:nth-child(n+2):nth-child(-n+4)
:nth-child(-5n+3) - Acid3
    1
    2
    3 +
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
 
:nth-child(2n of div)
    1
    Paragraph
    2 +
    Paragraph
    3
    Paragraph
    4 +
    Paragraph
    5
    Paragraph
    6 +
    Paragraph
 
:nth-child(3n+1 of .special)
    1 +
    2
    (Ignored)
    3
    (Ignored)
    4 +