Skip to content

Instantly share code, notes, and snippets.

@vdchristelle
Created September 9, 2013 07:44
Show Gist options
  • Select an option

  • Save vdchristelle/6492570 to your computer and use it in GitHub Desktop.

Select an option

Save vdchristelle/6492570 to your computer and use it in GitHub Desktop.
multi-column CSS - doesn't work in IE8, but hey who cares? ;-)
//multi-column CSS - doesn't work in IE8, but hey who cares? ;-)
.twocolumn {
-webkit-column-count: 2;
-moz-column-count: 2;
-ms-column-count: 2;
-o-column-count: 2;
column-count: 2;
-webkit-column-gap: 40px;
-moz-column-gap: 40px;
-ms-column-gap: 40px;
-o-column-gap: 40px;
column-gap: 40px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment