Skip to content

Instantly share code, notes, and snippets.

@mpezzi
Created February 24, 2011 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mpezzi/842295 to your computer and use it in GitHub Desktop.
Save mpezzi/842295 to your computer and use it in GitHub Desktop.
Cross browser CSS columns
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