- CSS 教程
- CSS - 教程
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 度量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图像
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - border-block 属性
- CSS - 边框内联
- CSS - 边距
- CSS - 列表
- CSS - Padding 属性
- CSS - 光标
- CSS - 轮廓
- CSS - 维度
- CSS - 滚动条
- CSS - 内联块
- CSS - 下拉列表
- CSS - visibility 属性
- CSS - Overflow 属性
- CSS - 清除修复
- CSS - float(浮点)
- CSS - 箭头
- CSS - resize 属性
- CSS - quotes 属性
- CSS - order 属性
- CSS - Position 属性
- CSS - hypens 属性
- CSS - :hover(悬停)
- CSS - display(显示)
- CSS - focus 属性
- CSS - zoom(缩放)
- CSS - translate 属性
- CSS - Height 属性
- CSS - hyphenate-character 属性
- CSS - Width 属性
- CSS - opacity 属性
- CSS - z-index 属性
- CSS - bottom 属性
- CSS - 导航栏
- CSS - 覆盖
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - Atrribute 选择器属性
- CSS - 运算器
- CSS - root
- CSS - 盒子模型
- CSS - 计数器
- CSS - Clip (Obsolete) 属性
- CSS - writing-mode 属性
- CSS - Unicode-bidi 属性
- CSS - min-content 属性
- CSS - 全部
- CSS - inset 属性
- CSS - isolation 属性
- CSS - overscroll-behavior 属性
- CSS - justify-items 属性
- CSS - justify-self 属性
- CSS - tab-size 属性
- CSS - pointer-event 属性
- CSS - place-content 属性
- CSS - place-items 属性
- CSS - place-self 属性
- CSS - max-block-size 属性
- CSS - min-block-size 属性
- CSS - mix-blend-mode 属性
- CSS - max-inline-size 属性
- CSS - min-inline-size 属性
- CSS - offset 属性
- CSS - accent-color 属性
- CSS - user-select 属性
- CSS 高级
- CSS - grid 属性
- CSS - Grid 布局
- CSS - flexbox
- CSS - vertical-align 属性
- css - positioning
- css - layers
- css - pseudo_classes
- CSS - 伪元素
- CSS - @ 规则
- CSS 滤镜 - text-effect 属性
- CSS 分页媒体
- CSS 打印
- CSS - 布局
- CSS - 验证
- CSS - 图像精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS - 圆角
- CSS - 边框图像
- CSS - 多种背景
- CSS - 渐变
- CSS - box-shadow 属性
- CSS - box-decoration-break 属性
- CSS - caret-color 属性
- CSS - text-shadow 属性
- CSS - 2D 转换
- CSS - 3D 变换
- CSS - transition 属性
- CSS - 动画
- CSS - 多列布局
- CSS - 盒子大小调整
- CSS - 工具提示
- CSS - buttons
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 值函数
- CSS - 数学函数
- CSS - Mask 属性
- CSS - shape-outside 属性
- CSS - 样式图像
- CSS - 特异性
- CSS - 自定义属性
- CSS 响应式
- CSS - 响应式网页设计 (RWD)
- CSS - 响应式设计视口
- CSS - 响应式网格视图
- CSS - 响应式媒体查询
- CSS - 响应式图像
- CSS - 响应式视频
- CSS - 响应式框架
- CSS 引用
- CSS - 所有属性列表
- CSS - 颜色引用
- CSS - 浏览器支持参考
- CSS - 网页字体
- CSS 工具
- CSS - PX 到 EM 的转换
CSS - 伪类 :where()
CSS 伪类函数 :where() 接受一个选择器列表作为输入,并选择与该列表中的任何选择器匹配的每个元素。
语法
:where(<complex-selector-list>) {
/* css declarations */
}
CSS :where() 示例
以下示例演示了 伪类 :where() 的用法。
<html>
<head>
<style>
main :where(h1, h2, h3) {
color: rgb(102, 0, 255);
}
:where(h2) {
text-decoration-line: underline;
}
div {
border: 3px solid black;
}
</style>
</head>
<body>
<main>
<h1>Heading 1</h1>
<h3>Heading 3</h3>
<div>
<h2>Heading 2</h2>
<p>Paragraph under div</p>
</div>
</main>
</body>
</html>
:where() 和 :is() 之间的区别
:where() 和 :is() 之间的区别在于它们的特殊行为,如下所示:
:where() | :is() |
---|---|
它是一个 CSS 选择器,允许您在不增加特异性的情况下对选择器进行分组。 | 它是一个 CSS 选择器,允许您对选择器进行分组,但与 :where() 不同的是,它在其括号内继承了最具体的选择器的特殊性 |
它充当一个容器,您可以在其中编写复杂的选择器,而不会影响这些选择器的特异性。 | 它仅在需要时用于增加特异性,同时保持单个选择子的特异性 |
例如,:where(div, p) { /* styles */ } 在不增加特异性的情况下对 div 和 p 选择器进行分组。 | 例如,:is(div, p) { /* styles */ } 将采用 div 或 p 的特异性,以更具体者为准。 |
总之, :where() 保持特异性为 0,而 :is() 根据括号内最特异性的选择器调整其特异性。
例- 此示例演示了如何将 :is() 用于特定样式。
- :where() 可用于添加其他样式,而无需更改 :is() 设置的特异性或覆盖样式。
- 保留了 .special-box 元素的特定样式,并使用 :where() 添加了其他样式。
<html>
<head>
<style>
:is(.box, .special-box) {
background-color: lightgray;
color: black;
font-weight: bold;
}
:where(.box, .special-box) {
border: 2px solid black;
padding: 10px;
margin: 10px;
}
:is(.special-box) {
background-color: blue;
color: white;
}
:where(.special-box) {
font-style: italic;
}
</style>
</head>
<body>
<div class="container">
<div class="box">Box A</div>
<div class="special-box">Special Box</div>
<div class="box">Box B</div>
</div>
</body>
</html>
宽容选择器解析
在 CSS 中原谅选择器解析的概念是指 :is() 和 :where() 选择器如何处理选择器列表中的无效选择器。
在 CSS 中,如果选择器列表中的选择器无效,则整个列表将被视为无效,并且不会应用与之关联的样式。
使用 :is() 和 :where(),列表中不正确或不受支持的选择器将被忽略,其余有效的选择器仍将应用。换句话说,:is() 和 :where() 提供了一种宽容机制,其中单个无效的选择器不会破坏整个选择器列表。
例在以下示例中:
- :is() 和 :where() 选择器用于设置特定元素的样式。
- 特殊样式应用于 .content div 中类为 .special 的框。
- .container div 中的标头具有独特的样式,忽略了无效的选择器。
- .container 内的所有框都使用通用样式。
- .container 内的 .footer 中的段落的样式不同。
- :where(.box.invalid-selector) 中的无效选择器不会破坏整个规则,这表明了对选择器解析的宽容。
<html>
<head>
<style>
:where(.content) :is(.box.special) {
background-color: yellow;
color: black;
font-weight: bold;
}
:where(.container) :where(.header, .invalid-selector) {
background-color: lightblue;
color: white;
}
:where(.container) :is(.box) {
border: 2px solid black;
margin: 10px;
padding: 10px;
}
:where(.container) :where(.footer) p {
font-style: italic;
color: gray;
}
:where(.container) :where(.box.invalid-selector) {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Main Heading</h1>
</div>
<div class="content">
<div class="box">Box 1</div>
<div class="box special">Special Box</div>
<div class="box">Box 3</div>
</div>
<div class="footer">
<p>Footer Content</p>
</div>
</div>
</body>
</html>