Created
November 11, 2013 09:53
-
-
Save ccamara/7410733 to your computer and use it in GitHub Desktop.
#CSS nth-element pseudo selector
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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