Skip to content

Instantly share code, notes, and snippets.

@vctrfrnndz
Created April 24, 2014 18:26
Show Gist options
  • Save vctrfrnndz/11264533 to your computer and use it in GitHub Desktop.
Save vctrfrnndz/11264533 to your computer and use it in GitHub Desktop.
Grids
@mixin grid($cols: 1, $gutter: 0, $childs: ".item") {
width: auto;
margin-right: -$gutter;
#{$childs} {
float: left;
width: (100% / $cols);
padding-right: $gutter;
background-clip: content-box;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment