Skip to content

Instantly share code, notes, and snippets.

@mrl22
Last active November 8, 2016 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 mrl22/d8734ffef183df163edba19a056520a2 to your computer and use it in GitHub Desktop.
Save mrl22/d8734ffef183df163edba19a056520a2 to your computer and use it in GitHub Desktop.
Boostrap less to make all columns the same height inside a row
// Doesnt quite work right yet
.match-height {
display: table;
[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