0

我想有以下结构:

sass: rule //coment

但是带有 // 的注释似乎只在新行上被接受。

有没有办法在规则所在的同一行评论 sass 规则?

4

2 回答 2

2

写评论的另一种方式是这样的:

/* comment text here */

请注意,除非您使用压缩选项,否则此类注释将保留在您生成的 css 中。

于 2013-03-17T17:31:07.920 回答
1

是的你可以。但仅在新行上,或在属性:值对之后。也许是一个不起眼的错误,但如果在选择器之后添加它们可能会在编译时中断。这可能会在较新版本的 SASS 中得到修复,因此如果您在编译注释时遇到问题,请检查如下所述的位置(或更新您的版本)。

IE

// This works
.myclass
    width: 30px //comment

// This breaks for some on compile
.myclass //comment
    width: 30px

// This style is sass only and won't be compiled/output in the final css file
/* this style will be seen in final css file as a normal css comment */
于 2014-07-15T20:05:44.150 回答