属性选择器:对带有指定属性的html元素设置样式
Element[attribute]:选择所有带有attribute属性元素
兼容IE8以上浏览器
Element[attribute =“value”]:选择所有使用attribute=“value”的元素
Element[attribute ~= "value"]:选择attribute属性包含value的元素
Element[attribute ^= " value"]:选择attribute属性值以value开头的所有元素
Element[attribute $= " value"]:选择attribute属性值以value结尾的所有元素
Element[attribute *= " value"]:选择attribute属性值包含value的所有元素
Element[attribute |= " value"]:选择attribute属性值以value或以value-开头的所有元素