css 知识点

CssModule

在 modules 中某个 class 不需要随机数

1
2
3
:global(.blue) {
background: red;
}

:where 伪类

降低优先级为 0

1
2
3
:where(.name) {
color: red;
}

水平和垂直滚动条交汇处样式调整

1
2
3
::--webkit-scrollbar-corner {
background: transparent;
}