Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Adventures with SASS ampersand Reply To: [Solved] Adventures with SASS ampersand

#189437
Paulie_D
Member

This SCSS


p {
  color: red;
   .a & {
    color: green;
  }
 }

compiles to


p {
  color: red;
}
.a p {
  color: green;
}