My Bootstrap row contains a variable number of columns determined by a CMS, sometimes exceeding the space available on one line.
I am looking for a way to neatly display all the columns with equal heights.
<div class='row'>
<div class="col-lg-2"></div>
<div class="col-lg-2"></div>
<div class="col-lg-2"></div>
<div class="col-lg-2"></div>
<div class="col-lg-2"></div>
<div class="col-lg-2"></div>
<div class="col-lg-2"></div>
<div class="col-lg-2"></div>
<div class="col-lg-2"></div>
</div>
Although I have found some solutions for making columns equal in height, they do not work when the columns exceed 100% of the row width.