Basically, I need firefox to render the stuff below the same way
IE renders it. Here's the code:
HTML Code:
<div style="width:750px;background:#EEE">
<div style="width:200px;height:200px;float:left;background:#F00;">a</div>
<div style="width:200px;height:200px;float:left;background:#0F0;clear:left">b</div>
<div style="width:200px;height:400px;float:left;background:#00F;">c</div>
<div style="clear:both"><div>
</div>
IE renders c at the same level as a, instead of b. This is probably
due to another bug of IE, maybe IE is not following W3C's rules again.
But it does the work!
Please also note that the code for a, b and c are going to be generated
dynamically by my application. This may be the real problem!
|