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 Refactor the Layout

Inside the media query, select the list items inside the gallery and add a width of 28.3333%

I am really stuck on the media query challenge: I read the one answer and put the following code into the challenge box, but it won't accept it. This is at the end of the page:

@media screen and (min-width: 480px) { gallery li { width: 28.3333%; }

Juan Luna
Juan Luna
11,483 Points
@media screen and (min-width: 480px) { gallery li { width: 28.3333%; }}

Thank you everyone, I got it ! Wouldn't know what I'd do if there were no help out there !!

1 Answer

Ken Alger
STAFF
Ken Alger
Treehouse Teacher

Catherine;

If you look through the CSS code, you will notice that gallery is an id, so it needs to be accessed with a #. So the code for inside the media query would be:

#gallery li {
    width: 28.3333%;
  }

Ken