Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS Sass Basics Improve Your Workflow with Sass Write Nested Selectors

Swan The Human
seal-mask
.a{fill-rule:evenodd;}techdegree
Swan The Human
Full Stack JavaScript Techdegree Student 19,338 Points

Trying to nest icn.success selector using & but it grays out the text and says answer is incorrect.

Im not sure why the & symbol looks like its invalid or not suppose to be there and im pretty sure im writing this correctly

style.scss
.banner {
  padding: 1em;
  background-color: lightgrey;
  .button{
    font-size: 1.5em;
  }
  .icn {
    font-size: 1.25em;
  }
  &.icn-success{
    color: green;
  }

}

1 Answer

Jamie Reardon
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Jamie Reardon
Treehouse Project Reviewer

Hi there, the purpose of using the parent reference selector (&) is to nest it and its selector inside of the parent code block, in this case, that would be .icn. you also don't need to write the parent name again, your (&) selector does that for you. So your selector nested in .icn should look like this:

&-success {

}