sasset:referencing_parent_selectors_with

& est un sélecteur spécial désignant le parent de l'élément

.item {
  background: white;
  &:hover {
    background: red;
  }
}
@mixin clearfix {
  &:before,
  &:after {
    content:'';
    display: table;
  }
  &:after {
    clear:both;
  }
}

.item {
  @include clearfix;
}

Contextual class

.item {
  #abc & { // #abc .item {}
    color: red;
  }
}
sasset/referencing_parent_selectors_with.txt · Last modified: 2016/04/02 11:52 by leo