@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