The simplest, most extensible way to do this is to use a table. You're dealing with columns; divs + floats simply aren't the best way to do that (not to mention the fact that multiple levels of nested divs just to hack around css limitations is hardly more "semantic" than just using a simple table).
If you do not wish to use the table element, consider css display: table (unsupported by IE7 and older)
Example: http://jsfiddle.net/emn13/7FFp3/
Relevant css:
.parent { display: table; }
.parent > div {display: table-cell; width:50%; }
/*omit width:50% for auto-scaled column widths*/
This approach is far more robust than using overflow:hidden with floats. You can add pretty much any number of columns; have them auto-scale if you want; and avoid complex hard to understand CSS. Also, the float solution requires that you know beforehand which column is longest as everything else is cut to that length.
KISS: don't use float hacks unless you specifically need to. If IE7 is an issue, I'd still pick a plain table with semantic columns over a hard-to-maintain, less flexible trick-CSS solution any day.
Another alternative is to use display:inline block; for example: http://jsbin.com/ovuqes/2/edit