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

Clayton Schmidt
Clayton Schmidt
6,841 Points

What am I doing wrong?

This is for the 4th code challenge in Advanced Sass, where I am asked to use a post-selector ampersand to add an exception to an element. What am I doing wrong?

My code looks like this:

p {
    a {
       color: red;
           .footer & {
              color: purple;
           }
       }
  > a {
    color: blue;
    &:hover {
        opacity: 0.5;
    }
  }
}

I have gone back through the video to try and find something different, but I got nothing. Help?

2 Answers

James Barnett
James Barnett
39,199 Points

This question is very specific, it asks for all <div> elements with a class of .footer not for any element with a class of footer.

Juan Manuel Rosello
Juan Manuel Rosello
3,931 Points

I was stuck exactly like Clayton. Thanks James for pointing out the obvious! LOL.