Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Moayad Ahdab
648 PointsQuestion 2
Q2 is giving me that the result is wrong, while I am sure that the code is correct, I think there is something wrong here ...
@media screen and (min-width: 660px) { body { background: darkgreen; } }
2 Answers

lordcozycat
11,940 PointsI just completed the Code Challenge, no issues. Can you copy and paste both of the media queries?
@media screen and (min-width: 660px) {
body {
background: darkgreen;
}
}
Does your code look like that, and what exactly is the error? For example, does it say step 1 no longer passes, or something else?

Erik McClintock
45,783 PointsMoayad,
When I copy and paste your code into the challenge, it works fine. Did you delete the first media query from Q1 before submitting Q2? That could cause it to throw an error, since it is expecting both media queries to be present in Q2.
Erik