These are the columns I have (Fiddle: https://jsfiddle.net/DTcHh/15420/embedded/result/) https://i.sstatic.net/Uvi0g.png
Using flex
, I was able to achieve equal height for the columns:
@media (min-width: 992px) {
.columns-equal {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
}
(I used media queries for responsiveness)
How can I split the second column into two rows that fill the entire column, centered like this: https://i.sstatic.net/E5l3Q.png
(I want the content of each row to be centered)
Is using flex
the best approach? I am considering using table-display, but it seems to break the responsiveness.