We're having trouble with float:left behavior with what appear to be simple <div>s on Firefox 9 (and evidently also Firefox 10). Here's the screenshot:

The link to the currently misbehaving webpage is here. If (on the Mac) the user zooms in or out it corrects itself but on first page load it displays this weirdness, and I am stumped. Any ideas?

link|improve this question

80% accept rate
Can you apply clear:both to that div? – j08691 Feb 6 at 4:12
your page seems fine on my firefox 10 – XepterX Feb 6 at 4:17
@j08691 Which <div>? – MikeSchinkel Feb 6 at 16:04
@XepterX. The client reported it was a FireFox 10 issue so I took his word. Hmm. – MikeSchinkel Feb 6 at 16:05
ah.. i saw the problem, not on a firefox but on a chrome if i zoom into the webpage or i change the resolution.. – XepterX Feb 7 at 2:19
show 2 more comments
feedback

migrated from webmasters.stackexchange.com Feb 6 at 4:04

This question came from our site for pro webmasters.

2 Answers

up vote 3 down vote accepted

What's happening is presumably that some of the floats in the line above are taller than you think. A left float will be up as high as it can and then float left as far as it can, so if that third float in the first line in your testcase is taller than the fourth and fifth one (even by fractions of a pixel!) you would get the observed behavior.

link|improve this answer
YES! You are a godsend Boris. THANK YOU. – MikeSchinkel Mar 2 at 23:17
feedback

You have 108 HTML errors and at least a few notable CSS errors. Not all of the HTML errors apply to this or are important but, in all that, there were some that might. Some CSS errors definitely need fixing.

link|improve this answer
Thanks. That site is actually our client's site; we created the WordPress plugin to display the gallery. The client doesn't really understand CSS well so we were trying to help them. Are you saying that this would work if the HTML were correct? – MikeSchinkel Feb 6 at 16:03
1  
Maybe. But the errors don't make it any easier to debug. – j08691 Feb 6 at 16:07
What @j08691 said. – Rob Feb 6 at 19:15
Turns out the problem was as simple as needing a height attribute set on the gallery item. This "validation errors are the problem" answer set me off on a wild goose chase and wasted countless hours, hence the down-vote. Thank goodness for @Boris Zbarsky's answer. – MikeSchinkel Mar 2 at 23:19
@MikeSchinkel - Fixing your mistakes is never a wild goose chase. Ignoring your mistakes will only bring you more pain down the road. In the future, others will advise you the same way. Until you learn that, you will always have problems. – Rob Mar 3 at 2:46
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.