属性选择器
CSS **属性选择器** 根据元素是否显式设置了给定属性进行匹配,可以选择定义属性值或子字符串值匹配。
css
/* <a> elements with a title attribute */
a[title] {
color: purple;
}
/* <a> elements with an href matching "https://example.org" */
a[href="https://example.org"]
{
color: green;
}
/* <a> elements with an href containing "example" */
a[href*="example"] {
font-size: 2em;
}
/* <a> elements with an href ending ".org", case-insensitive */
a[href$=".org" i] {
font-style: italic;
}
/* <a> elements whose class attribute contains the word "logo" */
a[class~="logo"] {
padding: 2px;
}
语法
[attr]
-
表示具有属性名为 *attr* 的元素。
[attr=value]
-
表示属性名为 *attr* 且值为 *value* 的元素。
[attr~=value]
-
表示属性名为 *attr* 且值为以空格分隔的单词列表,其中一个单词恰好为 *value* 的元素。
[attr|=value]
-
表示属性名为 *attr* 且值为 *value* 或以 *value* 开头,后跟连字符
-
(U+002D) 的元素。它通常用于语言子代码匹配。 [attr^=value]
-
表示属性名为 *attr* 且值以 *value* 为前缀(开头)的元素。
[attr$=value]
-
表示属性名为 *attr* 且值以 *value* 为后缀(结尾)的元素。
[attr*=value]
-
表示属性名为 *attr* 且值在字符串中至少包含一个 *value* 的元素。
[attr operator value i]
-
在结束括号 (
]
) 之前添加i
(或I
) 会使值进行不区分大小写比较(针对 ASCII 范围内的字符)。 [attr operator value s]
-
在结束括号 (
]
) 之前添加s
(或S
) 会使值进行区分大小写比较(针对 ASCII 范围内的字符)。
值
描述
示例
链接
CSS
css
a {
color: blue;
}
/* Internal links, beginning with "#" */
a[href^="#"] {
background-color: gold;
}
/* Links with "example" anywhere in the URL */
a[href*="example"] {
background-color: silver;
}
/* Links with "insensitive" anywhere in the URL,
regardless of capitalization */
a[href*="insensitive" i] {
color: cyan;
}
/* Links with "cAsE" anywhere in the URL,
with matching capitalization */
a[href*="cAsE" s] {
color: pink;
}
/* Links that end in ".org" */
a[href$=".org"] {
color: red;
}
/* Links that start with "https://" and end in ".org" */
a[href^="https://"][href$=".org"]
{
color: green;
}
HTML
html
<ul>
<li><a href="#internal">Internal link</a></li>
<li><a href="http://example.com">Example link</a></li>
<li><a href="#InSensitive">Insensitive internal link</a></li>
<li><a href="http://example.org">Example org link</a></li>
<li><a href="https://example.org">Example https org link</a></li>
</ul>
结果
语言
CSS
css
/* All divs with a `lang` attribute are bold. */
div[lang] {
font-weight: bold;
}
/* All divs without a `lang` attribute are italicized. */
div:not([lang]) {
font-style: italic;
}
/* All divs in US English are blue. */
div[lang~="en-us"] {
color: blue;
}
/* All divs in Portuguese are green. */
div[lang="pt"] {
color: green;
}
/* All divs in Chinese are red, whether
simplified (zh-Hans-CN) or traditional (zh-Hant-TW). */
div[lang|="zh"] {
color: red;
}
/* All divs with a Traditional Chinese
`data-lang` are purple. */
/* Note: You could also use hyphenated attributes
without double quotes */
div[data-lang="zh-Hant-TW"] {
color: purple;
}
HTML
html
<div lang="en-us en-gb en-au en-nz">Hello World!</div>
<div lang="pt">Olá Mundo!</div>
<div lang="zh-Hans-CN">世界您好!</div>
<div lang="zh-Hant-TW">世界您好!</div>
<div data-lang="zh-Hant-TW">世界您好!</div>
结果
HTML 有序列表
HTML 规范要求不区分大小写地匹配 type
属性,因为它主要用于 <input>
元素。请注意,如果用户代理不支持修饰符,则选择器将不会匹配。
CSS
css
/* Case-sensitivity depends on document language */
ol[type="a"]:first-child {
list-style-type: lower-alpha;
background: red;
}
ol[type="i" s] {
list-style-type: lower-alpha;
background: lime;
}
ol[type="I" s] {
list-style-type: upper-alpha;
background: grey;
}
ol[type="a" i] {
list-style-type: upper-alpha;
background: green;
}
HTML
html
<ol type="A">
<li>
Red background for case-insensitive matching (default for the type selector)
</li>
</ol>
<ol type="i">
<li>Lime background if `s` modifier is supported (case-sensitive match)</li>
</ol>
<ol type="I">
<li>Grey background if `s` modifier is supported (case-sensitive match)</li>
</ol>
<ol type="A">
<li>
Green background if `i` modifier is supported (case-insensitive match)
</li>
</ol>
结果
规范
规范 |
---|
选择器级别 4 # attribute-selectors |
浏览器兼容性
BCD 表格仅在浏览器中加载