1

我正在尝试使用来自 Zurb Foundation 的 Section Mixin

http://foundation.zurb.com/docs/components/section.html

正如我在源代码中看到的:

https://github.com/zurb/foundation/blob/master/scss/foundation/components/_section.scss

我可以将部分 mixin 称为:

.section-container {
    @include section-container($section-type:accordion);
    & > section { @include section($section-type:accordion, $title-selector:".title-sample", $content-selector:".content-sample"); }
  }

导致以下错误:

Mixin section doesn't have the following arguments: $title_selector, $content_selector.

我试过只使用 include 并且没有参数。但我想自定义颜色和那里的所有属性。

你能给我一些指点吗。

我正在使用安装和设置了 SASS gem、Compass 和 Zurb 基础 gem 的 Rails 应用程序。

4

1 回答 1

1

事实证明,我必须更新 zurb。我使用的是 4.0.9。这些 mixin 选项似乎是后来添加的。

于 2013-05-07T16:40:56.883 回答