我正在使用Sass Twitter Bootstrap并在使用变量参数的地方出现错误。
我通过搜索我的问题看到的唯一解决方案是确保我使用的是 SASS 3.2.x。我在 3.3.0.alpha.101 上,但卸载并重新安装了 3.2.8,但我仍然收到错误消息:
Invalid CSS after "...-shadow($shadow": expected ")", was "...) {"
引发错误的代码:
@mixin box-shadow($shadow...) {
-webkit-box-shadow: $shadow;
-moz-box-shadow: $shadow;
box-shadow: $shadow;
}
我还应该提到我正在使用 LiveReload 2.3.8。