Skip to content

Instantly share code, notes, and snippets.

@dhunmoon
Created September 8, 2015 13:06
Show Gist options
  • Save dhunmoon/48be7260da1f2277cbda to your computer and use it in GitHub Desktop.
Save dhunmoon/48be7260da1f2277cbda to your computer and use it in GitHub Desktop.
CSS: Columns Count and Gap
-moz-column-count: 5;
-moz-column-gap: 20px;
-ms-column-count: 5;
-ms-column-gap: 20px;
-webkit-column-count: 5;
-webkit-column-gap: 20px;
column-count: 5;
column-gap: 20px;
/*
Import This JS to make the CSS work:
https://raw.githubusercontent.com/atulc007/CSS3-Multi-Column/master/css3-multi-column.js
or add the code below.
<!--[if lt IE 10]>
<script src="https://raw.githubusercontent.com/atulc007/CSS3-Multi-Column/master/css3-multi-column.js"></script>
<![endif]-->
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment