3 <title>Leading/trailing space in :nth-* and :lang pseudo-classes
</title>
4 <style type=
"text/css">
6 div:nth-child
( 1 ) { background-color: yellow
; }
9 div:nth-child
( odd
) { color: green
; }
10 div:lang
( en-GB
) { background-color: silver
; }
13 div:nth-child
( 2n ) { color: blue
; }
18 <div>Green on Yellow
</div>
19 <div lang=
"en-GB">Blue on Silver
</div>