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 Unused CSS Stages Media Queries Media Features and Media Types

Whats missing?

Not sure where i'm going wrong, have a feeling its on the very top line maybe the brackets are placed incorrectly?

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Media Queries</title>
    <link rel="stylesheet" href="page.css">
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="wrap">
        <h1>Hi There!</h1>
        <p>
            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi lectus ante, luctus vel euismod ut, suscipit quis ligula. Vestibulum augue ante, semper sit amet congue non, faucibus sit amet lacus.
        </p>
        <p>
            Maecenas lobortis porttitor nisi, quis congue neque porta at. Donec interdum arcu eu ante semper nec venenatis ipsum dignissim. Vestibulum ultricies mi quis lectus suscipit fermentum.
        </p>
    </div>
</body>
</html>
style.css
/* Complete the challenge by writing CSS below */

.body {
  @media screen and (min-width: 768px) {
    background: #FF6347;
    color: white;
  }
}

3 Answers

Hi Anthony,

If you swap these lines around that should sort it:

.body {
  @media screen and (min-width: 768px) {

Hope that helps

-Rich

"Bummer! Did you specify the right background color?"

This is the error I get which is why it's thrown me off.

Hi Anthony,

Was this after swapping the lines as above? If they haven't been swapped it won't register the style and so will display that error that's all.

-Rich

My bad, i've corrected it, small mistake in placing the body element.

Thanks Rich!

No problem, glad you got it sorted.