|
Posted by Ben C on March 11, 2007, 4:56 am
Please log in for more thread options
[...]
> The problem is with IE6 (and possibly all versions of IE). I've
> corrected the problem by using a table. I gave up on trying to
> get the <div> to work. Maybe I've got something going in a
> global <div> declare somewhere, but I tend to think of more
> as an IE only problem.
>
> Basically, the problem occurs when wrapping those three small
> pictures into a <div style="width:100%;">. In such a case I need
> to clear:both; but the clear:both; breaks out of the container id-
> entified as, <div id="content">, and causes the container for the
> pictures (<div style="clear:both;">) to fall below the bottoms of
> the two outside (<div id="left_side"> and <div id="right_side">)
> containers.
There it might help to restrict clear to the div it's in (<div
style="width:100%">) by making _that_ div floated or display: table-cell
or any of the other things that start a new block formatting context.
|