Created
October 3, 2017 14:04
-
-
Save Origame/53c3acccf260ac12be5e894a9148f273 to your computer and use it in GitHub Desktop.
CSS : select last X items
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
//Last 4 items won't have margin | |
.selector{ | |
margin-bottom: 20px; | |
&:nth-last-child(-n+4){ | |
margin-bottom: 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment