Created
February 24, 2011 15:25
-
-
Save mpezzi/842295 to your computer and use it in GitHub Desktop.
Cross browser CSS 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
aside.left { | |
float: left; | |
width: 600px; | |
margin-left: 0; | |
margin-right: -600px; | |
} | |
aside.right { | |
float: left; | |
width: 200px; | |
margin-left: 600px; | |
margin-right: -800px; | |
} | |
.ie6 aside.left, | |
.ie6 aside.right { | |
display: inline; | |
overflow: hidden; | |
overflow-y: visible; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment