Created
September 9, 2013 07:44
-
-
Save vdchristelle/6492570 to your computer and use it in GitHub Desktop.
multi-column CSS - doesn't work in IE8, but hey who cares? ;-)
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
| //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