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 trialMarina Gerges
12,904 PointsStage 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
Kevin Kenger
32,834 PointsHey 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;
}
}
Marina Gerges
12,904 PointsThank you very much :)
Kevin Kenger
32,834 PointsMy pleasure!
Ken Alger
Treehouse TeacherMarina;
Try using 4n instead of 4.
Best of luck! Ken
Marina Gerges
12,904 Pointsthanks, it worked.