Skip to content

Instantly share code, notes, and snippets.

@badcrocodile
Created December 10, 2015 18:06
Show Gist options
  • Save badcrocodile/2adffab04980db5477f4 to your computer and use it in GitHub Desktop.
Save badcrocodile/2adffab04980db5477f4 to your computer and use it in GitHub Desktop.
:nth-child CSS Selectors for 3-Column Galleries
/* first column */
.one-third:nth-child(3n-2){
margin-left: 0;
}
/* middle column */
.one-third:nth-child(3n+2) {
padding:5px
}
/* 3rd column */
.one-third:nth-child(3n+3){
margin-right: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment