此代码有效:
//test.scss
@import "imageColor";
body {
$sourceFile: resources/icon/mask;
$targetFile: resources/compass/images/icon;
$color: red;
@include createMask($sourceFile, $targetPath, $color);
}
此代码不起作用:
//test:scss
@import "imageColor";
$sourceFile: resources/icon/mask;
$targetFile: resources/compass/images/icon;
$color: red;
$buttonResult: createMask($sourceFile, $targetPath, $color);
你知道为什么吗?我需要将这些代码发布在正文{}。之外
答案 0 :(得分:1)
尝试更换
$buttonResult: createMask($sourceFile, $targetPath, $color);
与
对齐body {
@include createMask($sourceFile, $targetPath, $color);
}
我恐怕你不能完全跳过身体{}。如果不提及选择器
,则无法应用样式