Skip to content

Instantly share code, notes, and snippets.

@fabiorochafg
Created September 6, 2014 15:05
Show Gist options
  • Save fabiorochafg/fbd428a070e5d4b71193 to your computer and use it in GitHub Desktop.
Save fabiorochafg/fbd428a070e5d4b71193 to your computer and use it in GitHub Desktop.
Allow multiple column layout (CSS only)
.columns {
overflow: hidden;
-moz-column-gap: 60px;
-moz-columns: 3 200px;
-webkit-column-gap: 60px;
-webkit-columns: 3 200px;
column-gap: 60px;
columns: 3 200px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment