Set Columns to Equal Height?

How do you set columns to equal heights using Bootstrap Studio?

css?

.ColumnHeight450 { min-height: 450px; }

@PurpleEdge min-height will give you white space for less than defined.

you need js to make this work

Try this https://stackoverflow.com/questions/8832321/jquery-css-make-the-container-element-keep-the-same-height-when-using-slideu

Also looks like this can be achieved with some simple css

https://www.w3schools.com/howto/howto_css_equal_height.asp

You should be able to do this using Flexbox now shouldn't you? Haven't tried in BSS yet, no time! lol, but I would think it would work now. That's one of the best things about flexbox!

https://codepen.io/theogrost/pen/rYPZVr You can use flexbox align-items:stretch CSS or Bootstrap 4 align-items-stretch class.