Skip to content

Instantly share code, notes, and snippets.

@elgervb
Created September 14, 2016 12:08
Show Gist options
  • Save elgervb/05168128b50b4801e371106c48a577ec to your computer and use it in GitHub Desktop.
Save elgervb/05168128b50b4801e371106c48a577ec to your computer and use it in GitHub Desktop.
Bootstrap equal columns
// hack for equal column height, together with parent display: table;
.row-eq-height {
display: table;
margin-left: 0;
margin-right: 0;
width: 100%;
> [class*="col-"] {
float: none;
display: table-cell;
vertical-align: top;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment