rentageekmom of LDM Devs
2/17/2016 - 5:22 PM

Bootstrap Equal Column Heights - Add the CSS to your file and add "row-eq-height" class to the row surrounding your columns which you want t

Bootstrap Equal Column Heights - Add the CSS to your file and add "row-eq-height" class to the row surrounding your columns which you want to be equal.

<div class="row row-eq-height">	
		<div class="col-md-6">
			Content Here
		</div>
		<div class="col-md-6">
			Content Here <br />That <br />Is <br />Much <br />Taller
		</div>
	</div>
/*
 * Row with equal height columns
 * --------------------------------------------------
 */
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
}