Skip to content

Instantly share code, notes, and snippets.

@Origame
Created October 3, 2017 14:04
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 Origame/53c3acccf260ac12be5e894a9148f273 to your computer and use it in GitHub Desktop.
Save Origame/53c3acccf260ac12be5e894a9148f273 to your computer and use it in GitHub Desktop.
CSS : select last X items
//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