1

我正在使用 Compass 0.12.2,它将此代码用于其border-radiusmixin:

https://github.com/chriseppstein/compass/blob/stable/frameworks/compass/stylesheets/compass/css3/_border-radius.scss

很容易看出,参数的默认值是使用文件顶部定义$radius的变量设置的。$default-border-radius

那为什么会这样

@include border-radius; // or @include border-radius();

抛出错误Mixin border-radius is missing argument $radius

它不应该使用默认值吗?

4

1 回答 1

1

在我的情况下,这是由bootstrap-sass定义自己的border-radiusmixin 引起的,它覆盖了指南针。

于 2013-08-28T22:12:15.883 回答