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

Stage 8 Challenge in How to Build a Website

The challenge: Inside the media query, clear the left side of every 4th list item in the gallery.

My answer:

@media screen and (min-width: 480px) {

 #gallery li:nth-child(4) {
   clear:left;
  }
}

It still says it's wrong, any ideas?

4 Answers

Hey Marina,

Right now, your code is selecting the fourth element, not EVERY fourth element. For that, you simply need to add an n to your expression.

@media screen and (min-width: 480px) {

 #gallery li:nth-child(4n) {
   clear:left;
  }
}

Thank you very much :)

My pleasure!

Ken Alger
STAFF
Ken Alger
Treehouse Teacher

Marina;

Try using 4n instead of 4.

Best of luck! Ken

thanks, it worked.