[css] How can I make Bootstrap columns all the same height?

Try this do through flex-box

_x000D_
_x000D_
.container {_x000D_
 display: flex;_x000D_
 padding-bottom: 50px;_x000D_
}_x000D_
.col {_x000D_
 background: blue;_x000D_
 padding: 30px;_x000D_
}_x000D_
_x000D_
.col.center {_x000D_
 background: red;_x000D_
 height: 100px;_x000D_
 margin-bottom: -50px;_x000D_
}
_x000D_
<div class="container">_x000D_
  <div class="col">Left</div>_x000D_
  <div class="col center">Center</div>_x000D_
  <div class="col">Right</div>_x000D_
</div>
_x000D_
_x000D_
_x000D_

Live JSFiddle - https://jsfiddle.net/grinmax_/spsn4fnq/