CSS [attribute=value] 选择器
选择所有使用target="_blank"的a元素
<!DOCTYPE html>
<html>
<head>
<style>
a[target=_blank] {
background-color: yellow;
}
</style>
</head>
<body>
<p>The link with target="_blank" gets a yellow background:</p>
<a href="https://www.mifengjc.com">mifengjc.com</a>
<a href="http://www.disney.com" target="_blank">disney.com</a>
<a href="http://www.wikipedia.org" target="_top">wikipedia.org</a>
<p><b>Note:</b> For [<i>attribute</i>] to work in IE8 and earlier, a DOCTYPE must be declared.</p>
</body>
</html>
<h2定义和用法
[attribute=value] 选择器用于选择指定了属性和值的元素。
浏览器支持
所有主流浏览器都支持[attribute=value]选择器。
注意: [attribute=value] 在IE8中运行,必须声明 <!DOCTYPE>
相关文章
CSS 教程: CSS 属性选择器
