2ndPlatform, I mean in the sample code you gave earlier in the thread, not anywhere on your site
autocrat, clear left/right/both can be used as follows:
<div class="bodyDIV">
<div class="leftColDIV">
Content for the left col - TEXT
</div>
<div class="leftColDIV">
Content for the right col - IMAGE
</div>
<hr>
</div>
If you then apply clear:both to the hr your containing div will always be longer than the two floated elements inside it - In moz it would otherwise just default back to 0px high...
Generally with that sort of layout you would be specifying the background on the bodyDIV, so if it drops to 0px on an inversed color layout you'd be wondering what was going on.
You also need an element with clear:both after you've finished all your floats and want to get back to normal layouts...
Have a look at the code on my liks, you'll see what I mean!
Have I missed a link in here somewhere?