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 trialDiego Mancevo del Castillo
5,455 PointsPreview Sass output does not match my compiler's output.
Hey! I'm a bit stuck on last code challenge of Sass stage 1. My Sass compiler output does not match the output CSS from the preview. Is this a bug?
My Sass code reads:
p{ a{ color: red; .footer &{ color: purple; } } > a{ color: blue; &:hover{ opacity:0.5; } } }
My compiler output:
p a { color: red; } .footer p a { color: purple; } p > a { color: blue; } p > a:hover { opacity: 0.5; }
preview css output:
p a { color: red; } p > a { color: blue; } p > a:hover { opacity: 0.5; }
1 Answer
Daniel Barreto
Courses Plus Student 14,978 PointsThis should solve your issue
p{ a{ color: red; div.footer &{ color: purple; } }
> a{
color: blue;
&:hover {
opacity:0.5;
}
}
You needed to be a bit more specific with the selectors. By selecting the specific div with a class footer (div.footer), it should let it pass.