Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Swan The Human
Full Stack JavaScript Techdegree Student 19,326 PointsTrying 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
.banner {
padding: 1em;
background-color: lightgrey;
.button{
font-size: 1.5em;
}
.icn {
font-size: 1.25em;
}
&.icn-success{
color: green;
}
}
1 Answer

Jamie Reardon
Treehouse Project ReviewerHi 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 {
}
Swan The Human
Full Stack JavaScript Techdegree Student 19,326 PointsSwan The Human
Full Stack JavaScript Techdegree Student 19,326 PointsAwesome thanks!