Skip to content

Instantly share code, notes, and snippets.

@kublaj
Forked from jhafner/textcolumns.css
Created May 31, 2016 11:02
Show Gist options
  • Select an option

  • Save kublaj/4b70ea6e2a747f8ca46c76fd066c2ae7 to your computer and use it in GitHub Desktop.

Select an option

Save kublaj/4b70ea6e2a747f8ca46c76fd066c2ae7 to your computer and use it in GitHub Desktop.
CSS Text Columns
#columns-3 {
text-align: justify;
-ms-column-count: 3;
-ms-column-gap: 12px;
-ms-column-rule: 1px solid #c4c8cc;
-moz-column-count: 3;
-moz-column-gap: 12px;
-moz-column-rule: 1px solid #c4c8cc;
-webkit-column-count: 3;
-webkit-column-gap: 12px;
-webkit-column-rule: 1px solid #c4c8cc;
column-count: 3;
column-gap: 12px;
column-rule: 1px solid #c4c8cc;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment