Skip to content

Instantly share code, notes, and snippets.

@athaeryn
Last active August 29, 2015 14:07
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 athaeryn/036926c895494008a890 to your computer and use it in GitHub Desktop.
Save athaeryn/036926c895494008a890 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
@mixin n-up($number) {
&:nth-child(#{$number}n + 1) { clear: left; }
}
.tile {
background-color: blue;
@include n-up(3);
}
.tile {
background-color: blue;
}
.tile:nth-child(3n + 1) {
clear: left;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment