在尝试使用Sass制作混音时,这是一个例子
@mixin icon($w,$h,$float:'null') {
width: $w;
height: $h;
@if $float != 'null'{
float: $float;
}
}
但我得到一个错误,我不知道萨斯是否支持这种比较,或者我做错了什么......
答案 0 :(得分:0)
试试这个:
@mixin icon($w,$h,$float: null) {
width: $w;
height: $h;
@if $float != null {
float: $float;
}
}
或尝试文档http://sass-lang.com/documentation/file.SASS_REFERENCE.html#_9