CSS [attribute] 选择器
[attribute] 选择器用于选取带有指定属性的元素。
1. 范例
为带有 target 属性的 <a> 元素设置样式:
a[target] { background-color:yellow; }
2. 浏览器支持
表格中的数字注明了完全支持该属性的首个浏览器版本。
选择器 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
[attribute] | 4.0 | 7.0 | 2.0 | 3.1 | 9.6 |
注释:对于 IE8 及更早版本的浏览器中的 [attribute],必须声明 <!DOCTYPE>。
[attribute=value] 选择器用于选取带有指定属性和值的元素。1. 范例:为 target="_blank" 的 <a> 元素设置样式:a[target=_blank] { background-color:yellow;}