Trying to create a container with two columns, each containing two columns of their own, all with equal heights using only CSS.
The issue: the inner columns in their parent column do not align with the other inner columns in their respective parent column.
Preferably, I want to use a method involving display: table;
and display: table-cell;
. Avoiding flexbox due to compatibility issues with IE.
See the JSFiddle.
I can achieve the desired layout by eliminating the two main column divs and creating four separate divs (each as a table-cell), all with equal heights; however, it's not the ideal solution.
Any suggestions or assistance would be greatly appreciated.