Created
April 15, 2016 02:30
-
-
Save dnasca/e14bdbc323229667f138decee1409c38 to your computer and use it in GitHub Desktop.
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
:first-child i === 0 | |
:last-child i === arr.length - 1 | |
:only-child arr.length === 1 | |
:nth-child(even) i % 2 | |
:nth-child(odd) !(i % 2) | |
:nth-child(n) i === n - 1 | |
:nth-last-child(n) i === arr.length - n | |
:nth-child(-n+3) i < 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment