DEV Community

Discussion on: Nesting in SASS

Collapse
 
lynnewritescode profile image
Lynne Finnigan • Edited

Great article! Another use for the ampersand that people might find useful would be to reference parent selectors with the ampersand at the end.

h1 {
    .parent-selector & {
        *insert styles*
    }
}

Very powerful!

Collapse
 
sarah_chima profile image
Sarah Chima

Awesome!!! Thanks for sharing this Lynne.