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

Robbie Thomas
Robbie Thomas
31,093 Points

Interpol 4/4 Challenge

I have this:

$time: morning a { @if $time == morning { color: red; } @else if $time == afternoon { color: blue; } @else { color: gray; } }

Says, compilation error! I also noticed that in the forums about 7 months ago is that they had troubles with this one, did they fix them yet?

Thanks!

2 Answers

Ron McCranie
Ron McCranie
7,837 Points
$time: morning;

a {
  @if $time == morning { color: red; }
  @else if $time == afternoon { color: blue; }
  @else { color: gray; }
}
Robbie Thomas
Robbie Thomas
31,093 Points

Thanks Mr. McCraine for saving my dimwitted self again.