Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created November 16, 2012 04:59
Show Gist options
  • Save jlittlejohn/4084254 to your computer and use it in GitHub Desktop.
Save jlittlejohn/4084254 to your computer and use it in GitHub Desktop.
SCSS: Content Columns (Mixin)
@mixin content-columns($columnCount, $columnGap: $gridGutterWidth) {
-webkit-column-count: $columnCount;
-moz-column-count: $columnCount;
column-count: $columnCount;
-webkit-column-gap: $columnGap;
-moz-column-gap: $columnGap;
column-gap: $columnGap;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment