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

Karen Matthews
Karen Matthews
2,478 Points

Responsive web design task challenge 2 of 3-coding problem

Challenge 2 of 3 Question: "Add the appropriate CSS within the same media query that will force the "love at first bite" illustration to disappear." /Medium resolution----/ @media screen and (max-width: 705px) {

intro object {

display: none; }

}

2 Answers

From what I can see, you have an extra curly braces that is causing the error. Try:

intro object {

display: none;

}

This should work.

Karen Matthews
Karen Matthews
2,478 Points

I got it-The code should be @media screen and (max-width: 705px) {

intro img {

display: none; } } Note: it won't show up but there is a hash-tag in front of intro