强大且稳定的 CSS,可立即投入使用。
我认为,每位前端开发者都应了解如何使用容器查询、创建滚动贴靠体验、使用网格避免 position: absolute
、快速敲定圆形、使用级联层,以及通过逻辑属性以更少的代码实现更多功能。下面简要介绍了每一条要求。
1. 容器查询
在过去 10 年里,用户呼声最高的 CSS 功能在各种浏览器中都很稳定,并且可在 2023 年用于宽度查询。
.panel {
container: layers-panel / inline-size;
}
.card {
padding: 1rem;
}
@container layers-panel (min-width: 20rem) {
.card {
padding: 2rem;
}
}
2. 滚动捕捉
精心编排的滚动体验可让您的体验与众不同,滚动贴靠是匹配系统滚动用户体验并同时提供有意义的停止点的完美方式。
.snaps {
overflow-x: scroll;
scroll-snap-type: x mandatory;
overscroll-behavior-x: contain;
}
.snap-target {
scroll-snap-align: center;
}
.snap-force-stop {
scroll-snap-stop: always;
}
您可以通过这个包含约 25 个演示的庞大且富有启发性的 Codepen 集合,详细了解此 CSS 功能的潜力。
scroll-snap-type
scroll-snap-align
scroll-snap-stop
overscroll-behavior
3. 网格堆叠
避免使用单元格 CSS 网格设置绝对位置。将它们堆叠在一起后,使用 justify 和 align 属性来定位它们。
.pile {
display: grid;
place-content: center;
}
.pile > * {
grid-area: 1/1;
}
grid
4. 快速圈出
在 CSS 中创建圆形的方法有很多,但这绝对是最简洁的方法。
.circle { inline-size: 25ch; aspect-ratio: 1; border-radius: 50%; }
aspect-ratio
5. 使用 @layer 控制变体
级联图层可以帮助将稍后发现或创建的变体插入到包含原始变体集的级联中的正确位置。
/* file buttons.css */ @layer components.buttons { .btn.primary { … } }
然后,在某个完全不同的文件(在某个其他随机时间加载)中,将新变体附加到按钮层,就像它一直与其余变体一起存在一样。
/* file video-player.css */ @layer components.buttons { .btn.player-icon { … } }
@layer
6. 使用逻辑属性,减少记忆内容,覆盖更多用户
记住这个一个新的盒模型,再也不用担心为国际编写模式和文档方向更改左右内边距或边距。将样式从实际属性调整为逻辑属性(例如 padding-inline
、margin-inline
、inset-inline
),现在浏览器将执行调整工作。
button { padding-inline: 2ch; padding-block: 1ch; } article > p { text-align: start; margin-block: 2ch; } .something::before { inset-inline: auto 0; }