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 How to Make a Website Responsive Web Design and Testing Write CSS Media Queries

Breakpoint 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

Hi Adam,

The challenge wants the background color to be navy.

Thanks Jason. I finally caught that. I appreciate the response.

You're welcome.

Jasmine Crenshaw
Jasmine Crenshaw
1,658 Points

What 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
Jasmine Crenshaw
1,658 Points

Never mind, I figured it out.

Hey Jasimine, looks like you overlooked the same thing I did. Try @media screen and (min-width:660px) { body { background-color: darkgreen; }