如何制作仅限sass的评论

时间:2013-04-21 17:30:49

标签: css sass

有没有办法在sass-only中发表SASS条评论?您知道,因此输出.css文件没有这些注释

例如,

/* global variables */

$mainColor: #666;

/* Layout */
body {...}

将输出

/* global variables */
/* Layout */
body {...}

2 个答案:

答案 0 :(得分:6)

您可以考虑三种选择。

1)使用以//开头的单行评论,就像已建议的 heylookltsme​​ 一样:

// This comment will not be included 
// in the compiled css!

2)使用压缩 output style编译SASS。然后传统的/* ... */评论将无法进入CSS。

使用vanilla SASS可以使用不同的输出样式进行编译,但我还建议您尝试Compass

请注意,您可以覆盖输出样式并强制注释始终显示在生成的CSS代码中,方法是使用exclaimation标记启动它:

/*!I really want this to appear in CSS at all times.*/

3)使用Compass,您可以使SASS省略所有评论:// .../* ... */。我在这个答案中解释了如何做到这一点:https://stackoverflow.com/a/15766439/901944

你应该有一个很好的理由去那边。

答案 1 :(得分:4)

单行注释不会包含在已编译的css中,使用//

// This comment will not be included 
// in the compiled css!

http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#comments