How to Use the Double Ampersand Selector in Sass

The Sass ampersand (&) symbol is used to reference the parent selector in a nested rule. For example, the following targets .btn on :hover: .btn { ... &:hover { background: dodgerblue; } } We can also place the & after...

The post How to Use the Double Ampersand Selector in Sass appeared first on Treehouse Blog.