Skip to content

Instantly share code, notes, and snippets.

@SaraSoueidan
Created June 8, 2013 02:41
Show Gist options
  • Save SaraSoueidan/5733756 to your computer and use it in GitHub Desktop.
Save SaraSoueidan/5733756 to your computer and use it in GitHub Desktop.
Multiple Column paragraphs or layouts
/*for any paragraph in order to divide it into columns*/
.three-col {
-moz-column-count: 3;
-moz-column-gap: 20px;
-webkit-column-count: 3;
-webkit-column-gap : 20px;
-moz-column-rule-color: #ccc;
-moz-column-rule-style: solid;
-moz-column-rule-width: 1px;
-webkit-column-rule-color: #ccc;
-webkit-column-rule-style: solid ;
-webkit-column-rule-width: 1px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment