이 코드는 작동합니다SCSS : 코드 외곽 몸
//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);
알고 계십니까? 나는이 코드를 시체 {} 외곽에 게시해야합니다.
body {
@include createMask($sourceFile, $targetPath, $color);
}
으로
$buttonResult: createMask($sourceFile, $targetPath, $color);
라인을 교체
어떤 종류의 선택기없이 컴파일 할 것으로 예상되는 CSS는 무엇입니까? – KatieK
가능한 [기존 믹스에서 SASS 기능 사용?] (0120-385-331) – cimmanon