使用函数的例子:
@function map($args...) {
@debug keywords($args);
@return red;
};
.box {
color : map($dribble : #ea4c89, $facebook : blue);
}
@function map($args...) {
@debug keywords($args);
@return red;
};
.box {
color : map($dribble : #ea4c89, $facebook : blue);
}
min(a,b),若a===b,return a
max(a,b),若a===b,return b
max(a,b),若a===b,return b
2015-11-11
空格等特殊字符的处理的替代方案:
content : "" + (Hello Sass);
content : "" + (Hello Sass);
2015-11-10