实例代码
<html>
<head>
<meta charset="utf-8">
<style>
a[target=_blank]{
background-color:yellow;
}
</style>
</head>
<body>
<h1>css[attribute="value"]选择器</h1>
<p>target=“_blank”的链接会有黄色背景。</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>
运行效果:
评论