Skip to content

Instantly share code, notes, and snippets.

@fotan
Last active August 29, 2015 14:27
Embed
What would you like to do?
CSS - BS3 - Equal Heights
/*
* Row with equal height columns
* IE10+ - Others are just going to have to suffer
* with uneven heights.
* --------------------------------------------------
*/
.row-eq-height {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
/*
USE:
<div class="row row-eq-height">
<div class="col-sm-4 bg-info">
Some Stuff
</div>
<div class="col-sm-4 bg-warning">
Some Stuff
More Stuff
Even more stuff
</div>
<div class="col-sm-4 bg-info">
Some Stuff
</div>
</div>
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment