Wondering how to create a grid in HTML and CSS with columns of varying heights?
I'm trying to find a way to make the shorter column stretch to match the height of the taller one. I attempted using JavaScript but wasn't satisfied with the results, especially since the tallest column may not have the most rows. Additionally, different content lengths can result in boxes with varied heights.
I'm open to different markup approaches - currently using two side-by-side lists, though I'm considering a table or another method. However, simply using rowspan doesn't seem like it will suffice as it would only create one box much larger than the rest. This issue seems common - any effective solutions out there?