Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

属性选择器

概述

属性选择器通过已经存在的属性名或属性值匹配元素。

[attr]
表示带有以 attr 命名的属性的元素。
[attr=value]
表示带有以 attr 命名的,且值为"value"的属性的元素。
[attr~=value]
表示带有以 attr 命名的属性的元素,并且该属性是一个以空格作为分隔的值列表,其中至少一个值为"value"。
[attr|=value]
表示带有以 attr 命名的属性的元素并且该属性是一个以空格作为分隔的值列表,其中至少一个值为"value"或者至少一个值以"value-"("-"为连字符,Unicode编码为U+002D)开头。典型的应用场景是用来来匹配语言简写代码(如zh-CN,zh-TW可以用zh作为value)。
[attr^=value]
表示带有以 attr 命名的,且值是以"value"开头的属性的元素。
[attr$=value]
表示带有以 attr 命名的,且值是以"value"结尾的属性的元素。
[attr*=value]
表示带有以 attr 命名的,且值包含有"value"的属性的元素。
[attr operator value i]
在带有属性值的属性选型选择器表达式的右括号(]括号)前添加用空格间隔开的字母i(或I)可以忽略属性值的大小写(ASCII字符范围内的字母)

示例

/* 所有具有"lang"属性的 span 元素的字体加粗 */
span[lang] {font-weight:bold;}
 
/* 所有具有"lang"属性,且值为"pt"的 span 元素的字体为绿色 */
span[lang="pt"] {color:green;}

/* 所有具有"lang"属性,且值为"en-us"的 span 元素的字体为蓝色*/
span[lang~="en-us"] {color: blue;}

/* 任意具有"lang"属性,且值带有"zh"字符串的 span 元素的字体为红色, 它会匹配简体中文(zh-CN)以及繁体中文(zh-TW) */
span[lang|="zh"] {color: red;}

/* 所有内部链接背景都为金色 */
a[href^="#"] {background-color:gold}

/* 所有以".cn"结尾的链接字体都为红色 */
a[href$=".cn"] {color: red;}

/* 所有带有"example"的链接背景都为灰色 */
a[href*="example"] {background-color: #CCCCCC;}

/*所有email输入框的边框都为蓝色*/
/*这里匹配的输入框类型"emeil"可以忽略其大小写,比如 "email","EMAIL","eMaiL"等等都能匹配*/
input[type="email" i] {border-color: blue;}

上面的CSS作用于下面的HTML时:

<div class="hello-example">
    <a href="https://example.com">English:</a>
    <span lang="en-us en-gb en-au en-nz">Hello World!</span>
</div>
<div class="hello-example">
    <a href="#portuguese">Portuguese:</a>
    <span lang="pt">Olá Mundo!</span>
</div>
<div class="hello-example">
    <a href="https://example.cn">Chinese (Simplified):</a>
    <span lang="zh-CN">世界您好!</span>
</div>
<div class="hello-example">
    <a href="https://example.cn">Chinese (Traditional):</a>
    <span lang="zh-TW">世界您好!</span>
</div>

规范

Specification Status Comment
Selectors Level 4
attribute selectors
Working Draft Added modifier for ASCII case-insensitive attribute value selection.
Selectors Level 3
attribute selectors
Recommendation  
CSS Level 2 (Revision 1)
attribute selectors
Recommendation 初始定义

浏览器支持

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) 1.0 (1.7 or earlier) 7 9 3
Case-insensitive modifier 49.0 47.0 (47.0) ? ? 9
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile Chrome for Android
Basic support ? (Yes) 1.0 (1) ? ? ? (Yes)
Case-insensitive modifier ? 49.0 47.0 (47.0) ? ? 9 49.0

相关链接

文档标签和贡献者

 此页面的贡献者: Ende93, AnnAngela, fzhw88, fscholz, teoli, alimon
 最后编辑者: Ende93,