其实我很纳闷的是percentage()函数 将一个不带单位的数转换成百分比值; 我直接在数值后面加一个%不就好了嘛 敲那么多次键盘不累吗?
2017-07-22
type-of(null) => null
type-of(a b c) => list
type-of((a: 1, b: 2)) => map
type-of(get-function("foo")) => function
type-of(a b c) => list
type-of((a: 1, b: 2)) => map
type-of(get-function("foo")) => function
2017-07-22
Sass 3.4.0 changelog:
index() now returns null rather than false if the value isn't found in the list.
也就是说3.4.0开始如果没有找到返回null,而不是false
index() now returns null rather than false if the value isn't found in the list.
也就是说3.4.0开始如果没有找到返回null,而不是false
2017-07-22
遇到问题要学会搜索。以下是min(), max()接受list的方法。
//SCSS
$list: (6,50,45,3,55,10,23);
td {width: max($list...) + "px"; height: min($list...) + "px";}
//css
td {
width: "55px";
height: "3px"; }
//SCSS
$list: (6,50,45,3,55,10,23);
td {width: max($list...) + "px"; height: min($list...) + "px";}
//css
td {
width: "55px";
height: "3px"; }
2017-07-22
DEPRECATION WARNING: Passing Hello Sass, a non-string value, to unquot
e()
will be an error in future versions of Sass.
on line 14 of test.scss
e()
will be an error in future versions of Sass.
on line 14 of test.scss
2017-07-22
through:prep.通过,穿过; 经由; 透过; 凭借
adv.从头到尾; 彻底; 自始至终;
adj.(电话)接通; 通话完毕; 有洞的; 直达的
to:prep.向,朝着; 到; 关于; 属于
adv.朝一个方向的; 到某种状态; 关闭;
当<start>大于<end>时,计数器将递减而不是递增。
adv.从头到尾; 彻底; 自始至终;
adj.(电话)接通; 通话完毕; 有洞的; 直达的
to:prep.向,朝着; 到; 关于; 属于
adv.朝一个方向的; 到某种状态; 关闭;
当<start>大于<end>时,计数器将递减而不是递增。
2017-07-22
已采纳回答 / 猥琐的沉沉
如果$social-colors为list一个参数即可,$social-colors为map时两个参数分别是key,value
已采纳回答 / 猥琐的沉沉
map是map,数组是数组,这两概念先搞清楚,map是key,value结构,数组是[value...]链状结构,这里是一个双层map结构,要获取bgcolor先通过$theme:map-get($theme-color,default)获取里层map,再通过同样的方式map-get($theme,bgcolor)获取到bgcolor的值,由于sass不支持函数内再嵌套函数所以只能使用类似.hhh{ $theme: map-get($theme-color,default) color: map-ge...
2017-07-21