For hours, I've been attempting to make some divs the same height.
Check out my JSfiddle here:
https://jsfiddle.net/4cj5LbLs/15/
I experimented with using display: table;
in the parent element and either display: table-cell;
or display: table-column;
in the child elements, as shown in the fiddle. However, the divs still don't end up with equal heights.
I did come across a solution using flexbox, but it's not compatible with IE9 and lower versions, and I want to ensure maximum compatibility.
Is there a way to achieve this with CSS tables, or am I going about this the wrong way?
Thank you for any assistance you can offer.
*Edit: Just a heads up that I only want the columns to have equal height when they are next to each other in a row. Once the screen width is below 800px, the columns stack and adopt their individual content heights.