Created
March 19, 2017 13:18
-
-
Save amowu/a2fcf7d116719267de951d2909ba2e1c 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