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 CSS Foundations Advanced Selectors Pseudo-Classes: :nth-child

My code isn't working??

I'm currently trying to complete a code challenge. It is asking me to change the background-color of the third li element to hex FF6347.

My code is:

li:nth-child(even) { color:white; background:black; };

li:nth-child(2) { background-color:#FF6347; };

I've tried changing li:nth-child(2) to li:nth-child(3) and I've tried removing "-color" from "background-color".

I really can't see whats wrong please help!

3 Answers

Looks like the semicolons after the closing brackets are causing it

Jacob Miller
Jacob Miller
12,466 Points

Ah, yep, that would do it.

Jacob Miller
Jacob Miller
12,466 Points

I just tried it and this code worked:

li:nth-child(3) {
    background: #FF6347;
}

I don't know why yours isn't working. Make sure you had the hex value right.

Thanks after posting I noticed the semi-colon's. Couldn't believe I didn't see that!