父选择器

父选择器 & 是 Sass 发明的一种特殊选择器,它用于嵌套选择器中引用外部选择器。它使得能够以更复杂的方式重用外部选择器,例如添加伪类或在父选择器之前添加选择器。

当在内部选择器中使用父选择器时,它会被相应的外部选择器替换。这会取代正常的嵌套行为。

游乐场

SCSS 语法

.alert {
  // The parent selector can be used to add pseudo-classes to the outer
  // selector.
  &:hover {
    font-weight: bold;
  }

  // It can also be used to style the outer selector in a certain context, such
  // as a body set to use a right-to-left language.
  [dir=rtl] & {
    margin-left: 0;
    margin-right: 10px;
  }

  // You can even use it as an argument to pseudo-class selectors.
  :not(&) {
    opacity: 0.8;
  }
}
游乐场

Sass 语法

.alert
  // The parent selector can be used to add pseudo-classes to the outer
  // selector.
  &:hover
    font-weight: bold


  // It can also be used to style the outer selector in a certain context, such
  // as a body set to use a right-to-left language.
  [dir=rtl] &
    margin-left: 0
    margin-right: 10px


  // You can even use it as an argument to pseudo-class selectors.
  :not(&)
    opacity: 0.8


CSS 输出

.alert:hover {
  font-weight: bold;
}
[dir=rtl] .alert {
  margin-left: 0;
  margin-right: 10px;
}
:not(.alert) {
  opacity: 0.8;
}









⚠️ 注意!

由于父选择器可以被类型选择器(如 h1)替换,因此它仅允许在复合选择器的开头使用,在该位置类型选择器也允许使用。例如,span& 不允许。

不过,我们正在考虑放宽此限制。如果您想帮助实现这一点,请查看此 GitHub 问题。

添加后缀添加后缀永久链接

您还可以使用父选择器向外部选择器添加额外的后缀。当使用像 BEM 这样的方法(使用高度结构化的类名)时,这尤其有用。只要外部选择器以字母数字名称结尾(如类、ID 和元素选择器),您就可以使用父选择器附加其他文本。

游乐场

SCSS 语法

.accordion {
  max-width: 600px;
  margin: 4rem auto;
  width: 90%;
  font-family: "Raleway", sans-serif;
  background: #f4f4f4;

  &__copy {
    display: none;
    padding: 1rem 1.5rem 2rem 1.5rem;
    color: gray;
    line-height: 1.6;
    font-size: 14px;
    font-weight: 500;

    &--open {
      display: block;
    }
  }
}
游乐场

Sass 语法

.accordion
  max-width: 600px
  margin: 4rem auto
  width: 90%
  font-family: "Raleway", sans-serif
  background: #f4f4f4

  &__copy
    display: none
    padding: 1rem 1.5rem 2rem 1.5rem
    color: gray
    line-height: 1.6
    font-size: 14px
    font-weight: 500

    &--open
      display: block



CSS 输出

.accordion {
  max-width: 600px;
  margin: 4rem auto;
  width: 90%;
  font-family: "Raleway", sans-serif;
  background: #f4f4f4;
}
.accordion__copy {
  display: none;
  padding: 1rem 1.5rem 2rem 1.5rem;
  color: gray;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 500;
}
.accordion__copy--open {
  display: block;
}


在 SassScript 中在 SassScript 中永久链接

父选择器也可以在 SassScript 中使用。它是一个特殊表达式,以选择器函数使用的相同格式返回当前父选择器:一个逗号分隔的列表(选择器列表),其中包含空格分隔的列表(复杂选择器),其中包含未加引号的字符串(复合选择器)。

游乐场

SCSS 语法

.main aside:hover,
.sidebar p {
  parent-selector: &;
  // => ((unquote(".main") unquote("aside:hover")),
  //     (unquote(".sidebar") unquote("p")))
}
游乐场

Sass 语法

.main aside:hover,
.sidebar p
  parent-selector: &
  // => ((unquote(".main") unquote("aside:hover")),
  //     (unquote(".sidebar") unquote("p")))

CSS 输出

.main aside:hover,
.sidebar p {
  parent-selector: .main aside:hover, .sidebar p;
}


如果 & 表达式在任何样式规则之外使用,则返回 null。由于 null 是假值,这意味着您可以轻松地使用它来确定 mixin 是否在样式规则中被调用。

游乐场

SCSS 语法

@mixin app-background($color) {
  #{if(&, '&.app-background', '.app-background')} {
    background-color: $color;
    color: rgba(#fff, 0.75);
  }
}

@include app-background(#036);

.sidebar {
  @include app-background(#c6538c);
}
游乐场

Sass 语法

@mixin app-background($color)
  #{if(&, '&.app-background', '.app-background')}
    background-color: $color
    color: rgba(#fff, 0.75)



@include app-background(#036)

.sidebar
  @include app-background(#c6538c)

CSS 输出

.app-background {
  background-color: #036;
  color: rgba(255, 255, 255, 0.75);
}

.sidebar.app-background {
  background-color: #c6538c;
  color: rgba(255, 255, 255, 0.75);
}



高级嵌套高级嵌套永久链接

您可以将 & 作为普通的 SassScript 表达式使用,这意味着您可以将其传递给函数或将其包含在插值中——甚至在其他选择器中!将其与选择器函数和 @at-root 规则结合使用,可以以非常强大的方式嵌套选择器。

例如,假设您想编写一个选择器来匹配外部选择器和一个元素选择器。您可以编写一个像这样的 mixin,它使用 selector.unify() 函数将 & 与用户的选择器组合。

游乐场

SCSS 语法

@use "sass:selector";

@mixin unify-parent($child) {
  @at-root #{selector.unify(&, $child)} {
    @content;
  }
}

.wrapper .field {
  @include unify-parent("input") {
    /* ... */
  }
  @include unify-parent("select") {
    /* ... */
  }
}
游乐场

Sass 语法

@use "sass:selector"

@mixin unify-parent($child)
  @at-root #{selector.unify(&, $child)}
    @content



.wrapper .field
  @include unify-parent("input")
    /* ... */

  @include unify-parent("select")
    /* ... */


CSS 输出

.wrapper input.field {
  /* ... */
}

.wrapper select.field {
  /* ... */
}









⚠️ 注意!

当 Sass 嵌套选择器时,它不知道使用了什么插值来生成它们。这意味着它会自动将外部选择器添加到内部选择器,即使您将 & 作为 SassScript 表达式使用。这就是为什么您需要显式使用 @at-root 规则来告诉 Sass 不要包含外部选择器。