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 trialKevin Kretschmer
5,088 PointsPseudo-Classes - :nth-child Code Challenge
I'm having a hard time in the coding challenge. The directions are:
Use the :nth-child pseudo-class to target the even list items only. Set the color to white and the background color to black.
I have come up with a solution, that corresponds exactly to the way it was shown in the video:
li:nth-child (even) { color: white; background-color: black; }
Please help. thank you.
3 Answers
Marcus Burkhart
3,169 PointsLooks like you have a space in between "child" and "(even)" if so take that out
li:nth-child(even)
Tong Vang
9,926 PointsEliminate the space between child and left parathesis. Detail is critical in programming.
li:nth-child(even) {
color: white;
background-color: black;
}
Kevin Kretschmer
5,088 Pointsawesome... I knew it was something simple I was missing. Thank you so much, I'll try to pay it forward.