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

HTML How to Make a Website Responsive Web Design and Testing Write CSS Media Queries

Moayad Ahdab
Moayad Ahdab
648 Points

Question 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

I 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
Erik McClintock
45,783 Points

Moayad,

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