"Enhancing a Simple PHP Application" was retired on December 19, 2016. You are now viewing the recommended replacement.
Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
Well done!
You have completed CSS Selectors!
You have completed CSS Selectors!
:nth-child is a powerful structural pseudo-class because it targets child elements based on any position inside a parent.
Quick Reference
Using :nth-child
This targets the even numbered li
elements in a parent:
li:nth-child(even) {
background: blue;
color: white;
}
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign upRelated Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up