查找字符串是否在sass中的字符串中

时间:2015-03-18 05:57:34

标签: sass mixins

我想要一个if语句来显示字符串是否在sass中的另一个字符串中。

我如何在mixin中执行此操作?

 @mixin hello($mystring) {
 }

1 个答案:

答案 0 :(得分:0)

您可以使用str-index来实现此目标。

<强> SCSS

@mixin hello($mystring) {
  @if (str-index("Hello World", $mystring)) {
    background-color: green;
  }
  @else {
    background-color: blue;
  }
}

.test {
  @include hello("World");
}

CSS输出

.test {
  background-color: green;
}