I investigated this question, but did not get a satisfactory answer. I am using the boot grid layout.
Take a look and resize the output window - as you resize, you may have noticed that when the widow's size is large enough to add col-sm - classes , my table breaks. Fiddle here
I want the height of both columns to be the same when they are next to each other (the height of the largest element), and when they are top / bottom to each other, they should have their own height (which is working now).
HTML
<div class="container">
<div class="architect-table">
<div class="row">
<div class="cell column-1 col-xs-12 col-sm-6"> abcde </div>
<div class="cell column-2 col-xs-12 col-sm-6"> abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde abcde </div>
</div>
</div>
CSS
.architect-table {
display: table;
width: 100%;
}
.row {
display: table-row;
}
.cell {
display: table-cell;
min-height: 44px;
border: 1px solid black;
}
However, I know that if I delete the style float: left, everything will work fine. But I can not, because I want a bootstrap grid layout. Any help would be appreciated.