darin | 1032729 | 2006-07-18 17:03:06 +0000 | [diff] [blame] | 1 | * |
| 2 | div |
| 3 | div span |
| 4 | div ~ span |
| 5 | div > span |
| 6 | div + span |
| 7 | #temp |
| 8 | div#temp |
| 9 | div.test[title="test"] |
| 10 | .test[title~="test"] |
| 11 | div > [title|="test"] |
| 12 | div.test[title^="test"] |
| 13 | span#test[title$="test"] |
| 14 | span[title*="test"]::after |
| 15 | div[title] |
| 16 | [title] |
| 17 | a:link |
| 18 | div, span > div:hover, a |
| 19 | div span#foo.test div:hover#bar a |
timothy@apple.com | b3b6f31 | 2009-01-16 04:53:22 +0000 | [diff] [blame] | 20 | :link |
| 21 | :visited |
| 22 | :hover |
| 23 | :active |
| 24 | :focus |
| 25 | :target |
diorahman@rockybars.com | f0c4876 | 2015-02-24 14:21:28 +0000 | [diff] [blame] | 26 | :lang("en") |
timothy@apple.com | b3b6f31 | 2009-01-16 04:53:22 +0000 | [diff] [blame] | 27 | :not(table) |
| 28 | :root |
| 29 | :enabled |
| 30 | :disabled |
| 31 | :checked |
| 32 | :indeterminate |
simon.fraser@apple.com | d3000f4 | 2019-10-28 04:49:52 +0000 | [diff] [blame] | 33 | :nth-child(2n+1) |
| 34 | :nth-child(2n) |
timothy@apple.com | b3b6f31 | 2009-01-16 04:53:22 +0000 | [diff] [blame] | 35 | :nth-child(2n) |
| 36 | :nth-child(2n+1) |
| 37 | :nth-child(-n+6) |
simon.fraser@apple.com | d3000f4 | 2019-10-28 04:49:52 +0000 | [diff] [blame] | 38 | :nth-last-child(2n+1) |
| 39 | :nth-last-child(2n) |
timothy@apple.com | b3b6f31 | 2009-01-16 04:53:22 +0000 | [diff] [blame] | 40 | :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.com | b3b6f31 | 2009-01-16 04:53:22 +0000 | [diff] [blame] | 61 | ::selection |
| 62 | ::before |
| 63 | ::after |
darin | 1032729 | 2006-07-18 17:03:06 +0000 | [diff] [blame] | 64 | |