Skip to content

Instantly share code, notes, and snippets.

@quoidautre
Created March 26, 2012 07:16
Show Gist options
  • Save quoidautre/2203644 to your computer and use it in GitHub Desktop.
Save quoidautre/2203644 to your computer and use it in GitHub Desktop.
LESSCSS: Columns
columns(@nb-column : 3, @gap : 20px, @margintop : 10px, @rule-color : #ccc, @rule-style : dashed, @rule-width : 1px ) {
margin : @margintop 0;
-moz-column-count : @nb-column;
-moz-column-gap : @gap;
-webkit-column-count : @nb-column;
-webkit-column-gap : @gap;
-moz-column-rule-color: @rule-color;
-moz-column-rule-style: @rule-style ;
-moz-column-rule-width: @rule-width;
-webkit-column-rule-color: @rule-color;
-webkit-column-rule-style: @rule-style ;
-webkit-column-rule-width: @rule-width;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment