Basics of IE Bugs

Float and Clear Text Bug In IE

The Problem:
When a paragraph block has a float: left and clear: both set on it, all words break to the next line in IE.


The Solution:


Set a width on the paragraph block as well:


float:left;
clear:left;
width:100%;