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 trialMUZ140211 Rutendo Madzivanyika
4,825 PointsNested selectors in Sass
how do i make a tags within a p tag change their color
1 Answer
Brett Smith
4,261 Pointsp {
.element 1 {
color: pink
}
.element 2 {
color: blue
}
}
If list elements they way I have above then they will process to p .element1. If you use an ampersand (&.element1) they will process as p.element1. You can also use the ampersand with hovers
a {
color: black;
&:hover {
color: blue;
}
}
Brett Smith
4,261 PointsBrett Smith
4,261 PointsIf list elements they way I have above then they will process to p .element1. If you use an ampersand (&.element1) they will process as p.element1. You can also use the ampersand with hovers