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

William Barnes
seal-mask
.a{fill-rule:evenodd;}techdegree
William Barnes
Front End Web Development Techdegree Student 6,597 Points

In my workspace, my responsive css works, but in the code challenge it does not.

In the first section of the challenge, it asks me to create a selector inside the media query for when the window is over 480px. Then it asks me to set the width property to "28.3333%". My code is as follows

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

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,860 Points

Hey William,

I just put your code through the challenge and it passed. Are you putting it at the very bottom the CSS file that is pre-loaded?

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

Is correct and passes.

:)