一、变量的声明和调用
$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;
}
本文标题:2-变量的声明和调用
本文链接:https://www.haomeiwen.com/subject/qynhmctx.html
网友评论