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 trialSerey Tep
969 PointsChallenge task 2 or 2
HELP!! What am I doing wrong for challenge task 2 of 2?
"Bummer! Did you set "clear: left" on every fourth gallery list item?"
@media screen and (min-width: 480px) {
#gallery li { width: 28.3333%; }
#gallery li:nth-child (4n) { clear: left; }
}
3 Answers
Travis Avey
18,876 PointsLooks like you have a space between nth-child and the (4n), there shouldn't be one there. Hope this helps.
Serey Tep
969 PointsYou're right! Thank you Travis!!!! :D
Travis Avey
18,876 PointsNo problem, glad I could help! :)