SASS如果有或声明?

时间:2015-02-26 18:27:40

标签: css sass

是否可以在SASS中创建或声明?

像这样:

@if $color == "red" || "blue"
  width: 100%

1 个答案:

答案 0 :(得分:2)

你可以这样做:

@if $color == red or blue
    width: 100%