$baseLineHeight: 1.5 !default;
$baseLineHeight: 2;
body{
line-height: $baseLineHeight;
}
也可以,有什么差别吗?求具体一点
$baseLineHeight: 2;
body{
line-height: $baseLineHeight;
}
也可以,有什么差别吗?求具体一点
2015-10-08
试了下,in mm cm pt pc px等绝对单位都能运算
ex em rem等相对当前字体的都不能运算
能换算的都会换算成px像素长度
不能换算的都会报编译错误
有个例外就是不加单位的话就相当于0
ex em rem等相对当前字体的都不能运算
能换算的都会换算成px像素长度
不能换算的都会报编译错误
有个例外就是不加单位的话就相当于0
2015-10-06
.box {
margin-bottom: 5px;
}
.btn, .box {
@include border-radius;
}
margin-bottom: 5px;
}
.btn, .box {
@include border-radius;
}
2015-10-04