CSS [attribute=value] 选择器


实例

为 target="_blank" 的 <a> 元素设置样式:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. a[target=_blank] {
  6. background-color: yellow;
  7. }
  8. </style>
  9. </head>
  10. <body>
  11. <p>下面带有target="_blank"的链接具有黄色的背景:</p>
  12. <a href="https://cankaoshouce.com">cankaoshouce.com</a>
  13. <a href="http://www.disney.com" target="_blank">disney.com</a>
  14. <a href="http://www.wikipedia.org" target="_top">wikipedia.org</a>
  15. </body>
  16. </html>

浏览器支持

表格中的数字注明了完全支持该属性的首个浏览器版本。

选择器
[attribute=value]4.07.02.03.19.6

注释:对于 IE8 及更早版本的浏览器中的 element>element,必须声明 <!DOCTYPE>


定义和用法

[attribute=value] 选择器用于选取带有指定属性和值的元素。


相关页面

CSS 教程:CSS 属性选择器

分类导航