Re: [css-d] Floating Divs of Unequal Height

2008-04-01 Thread Zack Frazier
Good morning. I don't see any pure CSS way to do this ... I'd suggest a script to measure your container onload and onresize. You could then set the style of the overlapping (end) elements to "clear: left;". Another option is to just set a different stylesheet based on the screen resolutio

Re: [css-d] Floating Divs of Unequal Height

2008-03-31 Thread Bruno Fassino
On Mon, Mar 31, 2008 at 3:31 PM, Cristian Palmas wrote: > 2008/3/30, Bruno Fassino <[EMAIL PROTECTED]>: > > > [1] http://brunildo.org/test/ImgThumbIBL.html > > > Bruno, > > I visited your link above. The page looks simple but good, but your > CSS does not validate because of the "display: -moz

Re: [css-d] Floating Divs of Unequal Height

2008-03-31 Thread Cristian Palmas
2008/3/30, Bruno Fassino <[EMAIL PROTECTED]>: > [1] http://brunildo.org/test/ImgThumbIBL.html > > > Best, > Bruno Bruno, I visited your link above. The page looks simple but good, but your CSS does not validate because of the "display: -moz-inline-block;" property and min-width assigned to a

Re: [css-d] Floating Divs of Unequal Height

2008-03-30 Thread Bruno Fassino
Charles Stuart wrote: > > I want to float a number of divs of unequal height, and have it seem > as if there are rows, e.g. the floated divs clear all the way to the > left instead of catching on taller divs, while still having a > percentage width container. > > The test case here explains it all:

Re: [css-d] Floating Divs of Unequal Height

2008-03-30 Thread Phoebe Taylor
Started playing with absolute positioning and trying to nudge down each block with that. #content .box1 { position: absolute; margin-left: 0; top: 100px; } #content .box2 { position: absolute;

Re: [css-d] Floating Divs of Unequal Height

2008-03-30 Thread Phoebe Taylor
(from the peanut gallery) What will be put into the divs? Another possible solution might be to use one long Div and then use to stack the contents. You should be able to set width, backgrounds, borders, margins and padding to make those look however you wish. -- Words I have learned to spe

[css-d] Floating Divs of Unequal Height

2008-03-30 Thread Charles Stuart
Hi All, I want to float a number of divs of unequal height, and have it seem as if there are rows, e.g. the floated divs clear all the way to the left instead of catching on taller divs, while still having a percentage width container. The test case here explains it all: - http://enure.net/dev/fl