CSS3属性选择器

属性选择器:对带有指定属性的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-开头的所有元素

 

CSS3属性选择器

上一篇:CSS HOUDINI 实现 平滑圆角


下一篇:CSS 盒子模型