Sass:替代变量少

时间:2014-07-29 07:57:07

标签: css sass less

请告诉我:

less 文件中,我有变量:

@example-1-top:                        value;
@example-1-bottom:                     value;

我打电话给Mixins,取决于论点:

.example(@depth) when (@example-browser-prefix = false) {
  box-shadow: ~"@{example-@{depth}-bottom}, @{example-@{depth}-top}";
}

sass 文件中,我有变量:

$example-1-top:                        value;
$example-1-bottom:                     value;

我打电话给Mixins,取决于论点:

@mixin z-depth($depth) {
  $depth: ???;
  @include prefixer(box-shadow, $depth, webkit moz spec);
}

而不是???我尝试过:

#{$example-#{$depth}-top}, #{$example-#{$depth}-bottom}
$example-#{$depth}-top, $example-#{$depth}-bottom

和...

Syntax error: Undefined variable: "$example-".

其余的返回一个字符串。

请教智慧:)

0 个答案:

没有答案