xref: /Universal-ctags/Units/parser-css.r/css-pseudo-classes.d/input.css (revision 6d91334ef4ceab01b4f2b11fe255c47ac5e85115)
1
2tr:nth-child(2n+1) { background-color: light-gray }
3tr:nth-child(odd) { background-color: light-gray }
4tr:nth-child(2n) { background-color: light-gray }
5tr:nth-child(even) { background-color: light-gray }
6tr:nth-child(10n+0) { background-color: gray }
7
8span:nth-child(0n+1) { color: lime; }
9span:nth-child(1) { color: lime; }
10span:nth-child(-n+3) { color: lime; }
11
12span:not(:first-child) { color: red; }
13body :not(span) { color: green; }
14
15a:lang(en):after { content: "[en]" }
16