Skip to content

Instantly share code, notes, and snippets.

@galaakk
Created September 8, 2012 19:56
Show Gist options
  • Save galaakk/3679205 to your computer and use it in GitHub Desktop.
Save galaakk/3679205 to your computer and use it in GitHub Desktop.
CSS : Text columns
#content {
-webkit-column-count: 2;
-webkit-column-rule: 1px solid #bbb;
-webkit-column-gap: 2em;
-moz-column-count: 2;
-moz-column-rule: 1px solid #bbb;
-moz-column-gap: 2em;
column-count: 2;
column-rule: 1px solid #bbb;
column-gap: 2em;
display: block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment