1.plate 选择器是元素选择器
2.bento是元素选择器
3.#fanctyid选择器
4.plate>apple后代选择器
5.#fancy pickle复合选择器
6. .small类选择器
7.orange.small复合选择器
8.bento>orange.small复合选择器
9.plate,bento复合选择器
10.*通用选择器
11.plate>*复合选择器
12.plate + apple兄弟选择器
13.bento ~ pickle兄弟选择器
14.plate>apple子类选择器
15.plate>orange:first-child子类选择器
16.plate :only-child伪类选择器
17.#fancy :last-chlid,pickle :last-child伪类选择器
18.plate:nth-child(3)伪类选择器
19、:nth-last-child(4) :其他子元素选择器
20、apple:first-of-type :其他子元素选择器
21、plate:nth-of-type(even) :其他子元素选择器
22、plate:nth-of-type(2n+3):其他子元素选择器
23、plate apple.small:only-of-type:其他子元素选择器
24、orange.small:last-of-type,apple.small:last-of-type:其他子元素选择器
25、bento:empty:空选择器
26、apple:not(.small):否定伪类