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 trialAdam Carter
15,266 PointsBreakpoint challenge glitch
The code is correct but the challenge won't let me pass.
@media screen and (min-width: 480px) { body { color: navy; } }
Why is this not passing?
4 Answers
Jason Anello
Courses Plus Student 94,610 PointsHi Adam,
The challenge wants the background color to be navy.
Adam Carter
15,266 PointsThanks Jason. I finally caught that. I appreciate the response.
Jason Anello
Courses Plus Student 94,610 PointsYou're welcome.
Jasmine Crenshaw
1,658 PointsWhat about the second breakpoint response for 660 pixels? I have put in the correct code, but it wouldn't let me pass the challenge. Code: @media screen and (min-width:660px) { body { background: darkgreen; }
Jasmine Crenshaw
1,658 PointsNever mind, I figured it out.
Adam Carter
15,266 PointsHey Jasimine, looks like you overlooked the same thing I did. Try @media screen and (min-width:660px) { body { background-color: darkgreen; }