Making bootstrap's column the same height has already been answered here:
How can I make Bootstrap columns all the same height?
However I have a bit of a different requirement.
Specifically, I need a column's height to be limited to the height of a specific column.
For example, if we have 2 columns (100px, 50px)
respectively, I want my first column to have height of 50px
too which I'm going to be using (overflow:hidden
) in. (Note that the heights are dynamic, but I always want to use the first column's height)
Is this possible with pure css? or do I have to use javascript to accomplish this?