Hi I have four divs in a bootstrap row. I want all divs in this row to have the same height and not break responsibility. I don\'t know how to do this without breaking respo
There was at one point an official experimental example of same-height columns using CSS flexbox with Bootstrap. Here's the gist of it:
.row-eq-height {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
And then use Note that flexbox isn't supported in IE<10.