Skip to content

Instantly share code, notes, and snippets.

@landru247
Created February 5, 2015 18:42
Show Gist options
  • Save landru247/3d672d8f129f3490a908 to your computer and use it in GitHub Desktop.
Save landru247/3d672d8f129f3490a908 to your computer and use it in GitHub Desktop.
CSS: Flexbox - Equal height cols
.equal, .equal > div[class*='col-'] {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex:1 0 auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment