Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚开始使用 sass,还在学习。我正在使用这个命令从 sass 生成 css:
sass --watch custom.scss:custom.css
它似乎删除了空类和 ID。是否可以将它们包含在生成的 CSS 中?
SASS 从不编译空类,作为一种解决方法,您可以在类中添加一个没有规则的 CSS 注释,因此它将被编译。
.empty { /*I'm still empty*/ }