blob: 5901316f8a2c47f59295b16e4dbc247711180cb9 [file] [log] [blame]
darin10327292006-07-18 17:03:06 +00001*
2div
3div span
4div ~ span
5div > span
6div + span
7#temp
8div#temp
9div.test[title="test"]
10.test[title~="test"]
11div > [title|="test"]
12div.test[title^="test"]
13span#test[title$="test"]
14span[title*="test"]::after
15div[title]
16[title]
17a:link
18div, span > div:hover, a
19div span#foo.test div:hover#bar a
timothy@apple.comb3b6f312009-01-16 04:53:22 +000020:link
21:visited
22:hover
23:active
24:focus
25:target
diorahman@rockybars.comf0c48762015-02-24 14:21:28 +000026:lang("en")
timothy@apple.comb3b6f312009-01-16 04:53:22 +000027:not(table)
28:root
29:enabled
30:disabled
31:checked
32:indeterminate
simon.fraser@apple.comd3000f42019-10-28 04:49:52 +000033:nth-child(2n+1)
34:nth-child(2n)
timothy@apple.comb3b6f312009-01-16 04:53:22 +000035:nth-child(2n)
36:nth-child(2n+1)
37:nth-child(-n+6)
simon.fraser@apple.comd3000f42019-10-28 04:49:52 +000038:nth-last-child(2n+1)
39:nth-last-child(2n)
timothy@apple.comb3b6f312009-01-16 04:53:22 +000040:nth-last-child(2n)
41:nth-last-child(2n+1)
42:nth-last-child(-n+6)
43:nth-of-type(odd)
44:nth-of-type(even)
45:nth-of-type(2n)
46:nth-of-type(2n+1)
47:nth-of-type(-n+6)
48:nth-last-of-type(odd)
49:nth-last-of-type(even)
50:nth-last-of-type(2n)
51:nth-last-of-type(2n+1)
52:nth-last-of-type(-n+6)
53:first-child
54:last-child
55:first-of-type
56:last-of-type
57:only-child
58:only-of-type
59:empty
60::first-line
timothy@apple.comb3b6f312009-01-16 04:53:22 +000061::selection
62::before
63::after
darin10327292006-07-18 17:03:06 +000064