<div id = "content">
<div id="column1"> </div>
<div id ="column2"> </div>
</div>
I am facing a challenge where I need column1 and column2 to match the height of the content div, ensuring that each column is as long as the tallest column. Despite trying to set the height of each column to auto or 100%, they still maintain their individual sizes.
Is there a way to achieve this without using tables, only leveraging CSS?
In this specific case, column 1 should extend its length to match that of column 2.