@debug 在 Sass 中是用来调试的,当你的在 Sass 的源码中使用了 @debug 指令之后,Sass 代码在编译出错时,在命令终端会输出你设置的提示 Bug:
@debug 10em + 12em;
会输出:
Line 1 DEBUG: 22em
@debug 10em + 12em;
会输出:
Line 1 DEBUG: 22em
.max{
width: max(10px,23px,10,23)
}
>>23
.max2{
width: max(10,23,10%,23%)
}
>>23%
.min{
width:min(10px,23px,10,23)
}
>>10px
.min2{
width:min(10,23,10%,23%)
}
>>10
min,max 取最后的值
width: max(10px,23px,10,23)
}
>>23
.max2{
width: max(10,23,10%,23%)
}
>>23%
.min{
width:min(10px,23px,10,23)
}
>>10px
.min2{
width:min(10,23,10%,23%)
}
>>10
min,max 取最后的值
2017-02-15
单位不一样的不能相除; width:ceil(20px / 5pt); 这种是不会报错的,绝对单位好像可以,相对单位不行
2017-02-15
.test2 {
content: quote( ImWebDesigner );
}
两边有空格可以的
content: quote( ImWebDesigner );
}
两边有空格可以的
2017-02-15