SCSS目标直接父母

时间:2017-05-10 11:38:20

标签: css sass

我有以下scss代码,我试图整理。

$colors-2: #222;
$colors-1: #ff0;

.footer__region {
  text-align: center;

  &--country {
    color: $colors-2;
    cursor: pointer;
    display: inline-block;

    .heading-3 {
      border-bottom: 2px solid transparent;

      .active & {
        border-bottom-color: $colors-1;
        color: $colors-1;
      }
    }
  }
}

我以为我可以将.active嵌入其中并添加&之后输出以下内容

.footer__region--country.active .heading-3 {
  border-bottom-color: #ff0;
  color: #ff0;
}

但这似乎并非如此。有没有人知道有任何Sass方法可以做到这一点?

注意:.footer__region--country将是附加.active的项目,.heading-3将是孩子。

1 个答案:

答案 0 :(得分:1)

幸运的是,对于您的示例,您可以使用@at-root指令以及.a.b{}选择与.b.a{}相同的事实。这样您就不必重复任何类名。

$colors-2: #222;
$colors-1: #ff0;

.footer__region {
  text-align: center;

  &--country {
    color: $colors-2;
    cursor: pointer;
    display: inline-block;

    .heading-3 {
      border-bottom: 2px solid transparent;

      @at-root .active#{&} {
        border-bottom-color: $colors-1;
        color: $colors-1;
      }
    }
  }
}

输出:

.footer__region {
  text-align: center;
}
.footer__region--country {
  color: #222;
  cursor: pointer;
  display: inline-block;
}
.footer__region--country .heading-3 {
  border-bottom: 2px solid transparent;
}
.active.footer__region--country .heading-3 {
  border-bottom-color: #ff0;
  color: #ff0;
}