选择器:
基本选择器:
    :first:第一个子元素
    :last:最后一个元素
    :even:下标偶数元素:0也是偶数
    :odd:奇数元素
    :eq(index):获取指定索引位置的元素
    :gt(index):查大于index索引的元素
    :lt(index):查小于index索引的元素
    :header:h标签元素
    :not(select):表示选择是出去select元素
属性选择器:
    [Attribute]:属性选择为attribute
    [arttribute=”value”],查属性为value的元素
    [attribute!=’value’]查属性不为value的元素
    [attribute^=‘value’]查以value为开头的属性
    [attribute$=”value”]查以value为结尾的属性
    [attribute*=“value”]查以包含value的属性
子元素选择器:伪类选择呢器
Type阵营,childe阵营
    :first-child:第一个子元素
    :first-of-type:第一个子元素
    :last-child:最后一个子元素
    :last-of-type:最后一个子元素
    :nth-child(n):到第n个子元素
    :nth-of-tyoe(n):到第n个子元素
黑马程序员前端全套视频    :nth-last-child(n):到倒数第n个子元素
    :nth-last-of-type(n):到倒数第n个子元素
表单选择器:
    :input:到input元素
    :text:到text元素
选择器总结:
Css2基本选择器,层级选择器,内容选择器,基本选择器,属性选择器,子元素选择器
Css2选择器,层级选择器:重点,必须要掌握
所有的元素都要加上””