Created
April 26, 2013 01:03
-
-
Save rolka/5464458 to your computer and use it in GitHub Desktop.
CSS3 columns
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-moz-column-count:3; /* Firefox */ | |
-webkit-column-count:3; /* Safari and Chrome */ | |
column-count:3; | |
-moz-column-gap:40px; /* Firefox */ | |
-webkit-column-gap:40px; /* Safari and Chrome */ | |
column-gap:40px; | |
-moz-column-rule:4px outset #ff00ff; /* Firefox */ | |
-webkit-column-rule:4px outset #ff00ff; /* Safari and Chrome */ | |
column-rule:4px outset #ff00ff; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment