Is there a work-around for the known IE7 issue where text does not wrap around floating elements when the text's container has hasLayout applied (in this case, due to the height, which is required)?
For example:
<div style="width:200px;">
<div style="float:right; width:50px; height:100px; background:#ff0;"> </div>
<div style="background:#0ff; height:400px;">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur.
</div>
</div>