|
Assuming you're having the float drop problem in IE, I believe the bug you're running afoul of is the doubled-float margin bug.
When you have a floated element with a margin on it that goes in the same direction, ie. float: left with a left margin or float: right with a right margin, IE will DOUBLE that margin and you'll get float drop.
The solution is to use conditional comments to target a separate 'iefixes' css file that contains ONLY the css needed to correct IE's bad behavior.
You would need to add display: inline on those divs that are float:left with a left margin and the same for the right.
If you have plenty of space INSIDE your 800px container, then this should be all you need to do. IE has a busted box model, so you must be careful of the box size PLUS padding PLUS margins PLUS borders.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|