Skip to content

Instantly share code, notes, and snippets.

@ccamara
Created November 11, 2013 09:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ccamara/7410733 to your computer and use it in GitHub Desktop.
Save ccamara/7410733 to your computer and use it in GitHub Desktop.
#CSS nth-element pseudo selector
//More info: http://css-tricks.com/how-nth-child-works/
ul li:nth-child(3n+3) {
color: #ccc;
}
ul li:nth-child(5) {
color: #ccc;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment