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

Soufiane Bdaoui
Soufiane Bdaoui
9,602 Points

Create a new rule that targets the first 4 list items only. Set the font weight

I have a simple unordered list with like 10 list items. I must change the font weight to bold, but only to the first 4 li in the ul.

i tried with this:

ul li:nth-child(-n+4) {font-weight: bold}

The "-1" ( or -) normally should do the trick. But still, the checker says that is wrong. What i am missing?

I tried with your code, and it passes.

1 Answer

John Donnell
John Donnell
7,801 Points

ul li:nth-child(-n+4) {font-weight: bold} Looks like your missing the semicolon ; after bold ul li:nth-child(-n+4) { font-weight: bold; }