2-变量的声明和调用
2019-11-05 本文已影响0人
早起的鸟儿
一、变量的声明和调用
$color:red !default; //表示默认值
$width:300px;
.box {
color:$color;
width:$width; //调用
}
编译后的css
.box{
color:red;
width:300px;
}
一、变量的声明和调用
$color:red !default; //表示默认值
$width:300px;
.box {
color:$color;
width:$width; //调用
}
编译后的css
.box{
color:red;
width:300px;
}