SASS:使用速记语法时出现语法错误

时间:2012-07-19 14:52:09

标签: sass

我的scss文件是这样的:

@import "compass/typography/lists/bullets";
.view-content ul
  +no-bullets

这会在页面上显示错误:

  

语法错误:“+ no-bullets”之后的css无效:期望“{”,是“”

但是,当规则如下所示:

.view-content ul {
  @include no-bullets;
}
然后没关系,子弹就不见了。

但我喜欢速记符号,如何启用它?

1 个答案:

答案 0 :(得分:0)

你是对的,我找到了the related documentation

我尝试了the following并且确实有效。

然后,我尝试了您的操作,直到我删除;指令上的尾随import后才能使用。

@import "compass/typography/lists/bullets"

.view-content ul
  +no-bullets

以下适用于Compass 0.12.2。尝试删除;指令上的尾随import