#willULoveMe {sayYes: comparable(2px,1px); sayNo: comparable(2px,1em);}
2016-08-15
嗯哼,keywords没太懂,大约得回头再来看这个知识点了。。。
max() 和 min()不能传list进去?
$list: (6,50,45,3,55,10,23);
td {width: max($list) + "px"; height: min($list) + "px";}
这么写会报错:
Error: (6, 50, 45, 3, 55, 10, 23) is not a number for `max'
$list: (6,50,45,3,55,10,23);
td {width: max($list) + "px"; height: min($list) + "px";}
这么写会报错:
Error: (6, 50, 45, 3, 55, 10, 23) is not a number for `max'
2016-08-15
@each $social-network,$social-color in $social-colors {
.btn-#{$social-network} {
color: $social-color;
}
}
最后的方法换成这样更为简单,不需要使用colors函数。
$each key,value in $social-colors
.btn-#{$social-network} {
color: $social-color;
}
}
最后的方法换成这样更为简单,不需要使用colors函数。
$each key,value in $social-colors
2016-08-15
quote("something here") 还是"something here"
unquote(nothing there) 还是 nothing there
单引号、双引号都一样
你不能给开头加了引号的字符串再加开头引号,也不能给开头没有引号的字符串去掉开头引号。
unquote(nothing there) 还是 nothing there
单引号、双引号都一样
你不能给开头加了引号的字符串再加开头引号,也不能给开头没有引号的字符串去掉开头引号。
2016-08-15
我的理解:
for $i from 1 through 3 相当于JavaScript的 for (var i = 1; i <= 3; i++)
for $i from 1 to 3 相当于JavaScript的 for (var i = 1; i < 3; i++)
through有等号,to没有等号
for $i from 1 through 3 相当于JavaScript的 for (var i = 1; i <= 3; i++)
for $i from 1 to 3 相当于JavaScript的 for (var i = 1; i < 3; i++)
through有等号,to没有等号
2016-08-15