Skip to content

Instantly share code, notes, and snippets.

@jhafner
Created May 30, 2013 15:43
Show Gist options
  • Select an option

  • Save jhafner/5678884 to your computer and use it in GitHub Desktop.

Select an option

Save jhafner/5678884 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