Parent selector (&)

Example

This has div.parent

and this does not

Code


p {
  font-size: 1.2rem;

  .parent & {
    // when p has class .parent
    background: red;
  }
}