I've written the following HTML:
<div id='wrapper'>
<div style='background-color:Red; float:left; width:50%'></div>
<div style='background-color:Green; width:50%'></div>
</div>
This gives me a red column and a green column. The two columns will extend down the page as I add text. However, what I really would like is for both columns to be the exact same height regardless of how much or how little text is in each column.
How can I do this?