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 (retired) Getting Started with Sass Advanced Nesting

1. 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.

Hi Sergio,

What code do you have so far?

2 Answers

Hi,

i am using this code

p { & > a { color: red; } }

Hi 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
Sue Dough
35,800 Points

Sergio'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;
     }   
} 

Tried this. It didn't work.