I have 3 divs side by side that are nested with a container div. Each div will have different content on various pages, so I need each of the nested divs to stretch to the height of the div with the most content. I've tried using 'height: 100%' and 'height: auto' but neither seem to work. Can anybody help me out or point me in the right direction please. My html is:
<div id="container">
<div id="column1"></div>
<div id="column2"></div>
<div id="column3"></div>
</div>
Many thanks in advance.