At 11:57 PM 2/26/2006, Michal Cizmazia wrote:
> > Just change the sequence - first the two on the left, then the two on the
> > right, then the text.
>
>This does not help.
>If the order is 2 left and then 2 right "clear floats",
>then the first right float starts at the same hight as the second 
>left (in FF, Op).
>The "clear: left" of the second left div pushes the following right 
>floats to its starting height as you mentioned.

Michal,

It looks like you're seeking to float three columns; you can contain 
all the images on each side of the page.  Each floated column begins 
at the same height:

<div id="d1">
         <img .../>
         <img .../>
</div>

<div id="d2">
         <img .../>
         <img .../>
</div>

<div id="d3">
         <p>...</p>
</div>


div#dN
{
         float: left;
         width: W;
         margin: A B C D;
}


Regards,
Paul  

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to