游戏

1题 plate(元素选择器)
2题bento (元素选择器)
3题#fancy (id选择器)
4题plate apple (后代元素选择器)
5题#fancy pickle (复合选择器)
6题.small (类选择器)
7题bento .small,plate .small (并集选择器)
8题bento orange (后代元素选择器)
9题plate,bento,plate (并集选择器)
10题 * ( 通配选择器)
11题plate* (后代元素选择器)
12题plate + apple (兄弟元素选择器)
13题bento~pickle (兄弟元素选择器)
14题plate > apple (子类元素选择器)
15题orange:first-child (子元素选择器)
16题:only-child (子元素选择器)
17题.small: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题apple:only-of-type (子元素选择器)
24题.small:nth-child(even) (子元素选择器)
25题bento:empty (子元素选择器)
26题apple:not(.small) (not选择器)

你可能感兴趣的:(游戏)