I have a element with class row
and three col
elements right after it. Right now, all col
elements assume the height of the largest col
.
I would like to restrict the column heights instead to that of a smaller column such that,
- This column,
#colB
, has a minimum height, but can be made bigger - The other two columns should
overflow-y: scroll
if they exceed the height of#colB
.
Is there a good way to do this using Bootstrap 4 utilities?
Example js-fiddle here: