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

Rodrigo Salles
Rodrigo Salles
12,883 Points

Next, use the & symbol to create the selector .icn-success. Set the color of .icn-success to green.

My code it's wrong?

style.scss
.banner {

  .button {
    font-size: 1.5em
  }

  padding: 1em;
  background-color: lightgrey;
}

.icn {
  font-size:1.25em;

  &.icn-success {
    color:green;
   }
}

2 Answers

Tim Knight
Tim Knight
28,888 Points

Hi Rodrigo—

You're really close on this one. Take a look at the question again, they're looking for you to use & to have the class .icn-success. So you'd want to do something like &-success so the .icn will get pulled from the top of the nest.

Vipin Singh
Vipin Singh
15,268 Points

Here i have solve the problem

.banner {
  padding: 1em;
  background-color: lightgrey;

  .button {
    font-size: 1.5em;
  }

  .icn {
    font-size: 1.25em;

    &-success {
     color: green;
   }
  }

}

.banner { padding: 1em; background-color: lightgrey;

.button { font-size: 1.5em; }

.icn { font-size: 1.25em;

&-success {
 color: green;

} &-warning { color: red; } }

}