我正在使用最新的Sass和Compass插件。我希望生产代码中包含“硬”注释,但此后我想换行。
/*! Generic elements and layout */
/* *********************************************** */
html
box-sizing: border-box
...
应该这样输出:
/* Generic elements and layout */
html{box-sizing: border-box}...
这有可能吗?我想在我的代码中包含来自第三方的许可证(flexbox等)。
最佳答案
否。这种事情需要对Sass进行修改。您可以使用简短的C样式注释来获取功能上相同的东西:
/*! Generic elements and layout */
// ***********************************************
html
box-sizing: border-box
带有双斜杠的注释永远不会成为生成的CSS的一部分。
关于compression - Sass中的硬评论后换行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16812933/