1. :nth-child和 :nth-of-type 区别
比如: p:nth-child(2) 满足条件:1.必须是p标签;2.必须是父元素的第2个子元素;P:nth-of-type(2) 满足条件:必须是父元素的第二个p标签,无需是第二个子元素;