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

Robert O'Toole
Robert O'Toole
6,366 Points

what is the li:nth-child(1) { } stuff i see in regards to flexbox? in treehouse tutorials all the list have a class

what is the li:nth-child(1) { } stuff i see in regards to flexbox? in treehouse tutorials all the list have a class

should i be giving each list item a class? or referring to them as nth-child.. or am i missing something entirely haha

2 Answers

Steven Parker
Steven Parker
229,708 Points

Using classes and "nth-child" selectors are for achieving a particular result. They are not specifically related to flexbox, and can be used effectively without it.

It is, however, a common technique and the sample code in the courses are examples of that technique.