标签:指令 value 多行 基础指令 code amp down 搭建 exp
编译:
sass input.scss output.css --style expanded
动态编译单个文件:
sass --watch input.scss:output.css --style expanded
动态编译文件夹:
sass --watch sass/:css/ --style expanded
父选择器 &
&必须作为第一个字符
多行和单行注释
/* */ // 单行注释编译时会忽略
$myWidth:100px;
.test{
width:$myWidth;
}
$mytext = "hello"
/* #{ $mytext } */
@function function-name($args) {
@return value-to-be-returned;
}
标签:指令 value 多行 基础指令 code amp down 搭建 exp
原文地址:https://www.cnblogs.com/final-elysion/p/8944786.html