在Sass中,如何比较if语句中的两个或多个值?

时间:2013-10-16 15:11:43

标签: if-statement sass

我知道在PHP中我可以这样做:

if ($foo == true && $bar == true) {
    // Both true
} elseif ($foo == false && $bar == false) {
    // Both false
}

我怎么能在Sass那样做?或者我可以......关于这个主题的文档很少http://sass-lang.com/documentation/file.SASS_REFERENCE.html#_6

我试过这样的事情:

@if $foo == false $bar == false {
    // Both false
}

不提供错误,但只评估$foo

这也不行:

@if $foo == false && $bar == false {
    // Both false
}

也不是这样:

@if $foo == false AND $bar == false {
    // Both false
}

谢谢!

1 个答案:

答案 0 :(得分:0)

来自§6.4.4 - Boolean Operations

  

SassScript支持andornot运算符以获取布尔值。