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 trialRodrigo Salles
12,883 PointsNext, use the & symbol to create the selector .icn-success. Set the color of .icn-success to green.
My code it's wrong?
.banner {
.button {
font-size: 1.5em
}
padding: 1em;
background-color: lightgrey;
}
.icn {
font-size:1.25em;
&.icn-success {
color:green;
}
}
2 Answers
Tim Knight
28,888 PointsHi 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.
cossy
17,748 Points.banner { padding: 1em; background-color: lightgrey;
.button { font-size: 1.5em; }
.icn { font-size: 1.25em;
&-success {
color: green;
} &-warning { color: red; } }
}
Vipin Singh
15,268 PointsVipin Singh
15,268 PointsHere i have solve the problem