Skip to content

Instantly share code, notes, and snippets.

@jacqueminv
Last active October 11, 2015 14:48
Show Gist options
  • Select an option

  • Save jacqueminv/3875547 to your computer and use it in GitHub Desktop.

Select an option

Save jacqueminv/3875547 to your computer and use it in GitHub Desktop.
CSS: variable wrapper with equal height columns

setting "fixed" padding is an issue, look here: http://jsfiddle.net/GTY8P/

.wrapper {
    overflow: hidden;
}
.wrapper > div {
    width: 50%;
    float: left;
    padding-bottom: 999999em;
    margin-bottom: -999999em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment