标签:运算符 添加 size mixin 参数 sas family back font
1.变量
$curColor: green
.userCard {
background:$curColor;
}
2.混合(可以添加参数: 参数名:值 即可)
@mixin large-text {
font:{
family:Arial;
size:20xp;
weight:bold;
}
}
.page-title {
@include large-text;
}
3.选择器
a {
colorL:blue;
&:hover {
text-decoration:underline;
}
}
4.数值可以直接写运算符
标签:运算符 添加 size mixin 参数 sas family back font
原文地址:https://www.cnblogs.com/zzzzzzzsy/p/10251071.html