标签: sass
以下mixin Sass代码工作正常:
@mixin test($attr, $radius) { hey :blah + $attr; }
我可以将$attr参数设置为foo,输出将为
$attr
foo
hey: blahfoo
但以下代码不起作用:
@mixin test($attr, $radius) { hey + $attr :blah; }
它只会引发语法错误。如何为属性名称进行字符串连接,就像我可以为值做的那样?