其他规则
约 161 字小于 1 分钟
2025-04-22
一、其他规则
Stylus 对大多数 CSS @
规则的无括号语法提供基本支持,例如 @viewport
、@page
、@host
、@supports
等:
@viewport
color: #00f
@supports (display: flex)
div
display: flex
@page :blank
@top-center
content: none
编译为:
@viewport {
color: #00f;
}
@supports (display: flex) {
div {
display: flex;
}
}
@page :blank {
@top-center {
content: none;
}
}
二、未定义的规则
Stylus 支持任何未知的 @
规则,因此它是向前兼容性的,因为 CSS 中的任何新的 @
规则都可以用基于缩进的 Stylus 语法编写,并且可以完美渲染:
@foo
@bar
width: 10px
.baz
height: 10px
编译为:
@foo {
@bar {
width: 10px;
.baz {
height: 10px;
}
}
}
更新日志
2025/8/24 08:17
查看所有更新日志
e7112
-1于