提问人:yakunins 提问时间:7/15/2023 更新时间:7/15/2023 访问量:28
如何防止在输出CSS中解包嵌套的SCSS规则?
How to prevent unwrapping of nested SCSS rules in output CSS?
问:
最近的浏览器对嵌套 CSS (https://caniuse.com/css-nesting) 有很好的支持。
在某些编译器中,是否有一些选项可以保持嵌套规则不变?
DART SASS 的提案,请参阅 https://github.com/sass/sass/blob/main/proposal/plain-css-nesting.md
输入 SCSS 示例:
$r: red;
.c1 {
.c2 { color: $r; }
}
输出示例:
.c1 {
.c2 { color: red; }
}
答: 暂无答案
评论