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 trialSergio Rodriguez
Courses Plus Student 7,456 Points1. Use a nested selector to say all <a> tags within <p> tags are red.
Use a nested selector to say all <a> tags within <p> tags are red.
2 Answers
Sergio Rodriguez
Courses Plus Student 7,456 PointsHi,
i am using this code
p { & > a { color: red; } }
Jason Anello
Courses Plus Student 94,610 PointsHi Sergio,
The code that you have here does not pass task 1. Assigning "Best Answer" here will be misleading to anyone else that's stuck on this challenge.
If you have successfully passed this challenge then you should at least make an edit to your answer so it contains the correct code.
Sue Dough
35,800 PointsSergio's code above does not work and he should of never marked himself as best answer. Here is the correct code.
p {
a {
color: red;
}
}
Carol Sherman
5,039 PointsTried this. It didn't work.
Jason Anello
Courses Plus Student 94,610 PointsJason Anello
Courses Plus Student 94,610 PointsHi Sergio,
What code do you have so far?