Sass有不同的运算符(!=)吗?

时间:2014-09-29 11:43:27

标签: css sass frontend

在尝试使用Sass制作混音时,这是一个例子

@mixin icon($w,$h,$float:'null') {
    width: $w;
    height: $h;
    @if $float != 'null'{
        float: $float;
    }
}

但我得到一个错误,我不知道萨斯是否支持这种比较,或者我做错了什么......

1 个答案:

答案 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