实例代码
<html>
<head>
<meta charset="utf-8">
<style>
a[target]{
background-color:yellow;
}
</style>
</head>
<body>
<h1>css[attribute]选择器</h1>
<p>带有target属性的链接获得选择器颜色背景:</p>
</body>
<a href="http://www.dwoke.com">dwoke.com</a>
<a href="http://www.baidu.com" target="_blank">baidu.com</a>
<a href="http://www.bing.com" target="_top">bing.com</a>
</html>
运行效果
评论