一.选择器
1. css1选择器
2.css2选择器
3.css3选择器
4.:nth-of-type(n)和:nth-child(n)区别
(1).在不指定类型时,nth-child(n)选中的是父元素下的第N个子元素。nth-of-type(n)选中的是父元素下的不同类型标签的第N个。
(2).在指定具体元素时,ele:nth-child(n)要求不仅仅是第n个子元素,并且这个子元素的标签是ele。ele:nth-of-type(n)选择的是父元素下ele标签的第n个
5.:last-chid和:last-of-type区别
ele:last-child选中父元素下最后一个子元素,并且该子元素的标签必须为ele,否则一个都不选中。ele:last-of-type选中父元素下ele标签的最后一个.