Skip to content

Instantly share code, notes, and snippets.

@jasonkmccoy
Created March 14, 2015 20:52
Show Gist options
  • Save jasonkmccoy/8a71785fdb1696e8632f to your computer and use it in GitHub Desktop.
Save jasonkmccoy/8a71785fdb1696e8632f to your computer and use it in GitHub Desktop.
Column-width Mixin
@mixin column-width ( $value: 150px ) {
-webkit-column-width: $value;
-moz-column-width: $value;
column-width: $value;
}
@jasonkmccoy
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment