This method works correctly IE7+ and all major browsers, it's been tried and tested in a number of complex viewport-based web applications.
<style>
.container {
font-size:0}
.column {
display: inline-block;
width: 50%;
font-size:16px; /* or whatever would normally be inherited
(twitter bootstrap resets body font-size to 13px, for example) */}
/* Serve this to IE7 _only_: */
.ie7 .column {
display:inline;
zoom:1}
</style>
<div class="container">
<div class="column">text that can wrap</div>
<div class="column">text that can wrap</div>
</div>
Live demo: http://jsbin.com/openuh/2
The only downside to this method, is when relying on body {font-size:??px} as basis for em/%-based font-sizing.
IE7 specific CSS could be served using IE's Conditional comments