vote up 0 vote down star
1

Two divs are next to eachother, both floating left within a wrapper. In IE and firefox they appear correctly, but in Chrome, the 2nd floating div clears down below Div A. When I remove "float:left" in the css, it goes to the correct position in Chrome, but clears down in IE and firefox (as it should). I dont know why it is appearing this way in Chrome. Any ideas?

flag
May we see some css/html? – Daniel A. White Jun 18 at 14:41

3 Answers

vote up 0 vote down check
  1. The HTML and CSS would be useful to answer this.

  2. If you have just two divs and you want them to float next to one another, then set a width on each of them and float one left and float the other right. Remember to leave some space in between the two.

link|flag
this is it. I totally forgot to add a width for div B. Thanks to you and all the other advice – Jesse Jun 18 at 15:26
It is always the silly things that get us ;) – Bryan Migliorisi Jun 18 at 16:23
vote up 0 vote down
  1. Without a code example this really is just guessing

  2. I am not sure how Chrome works but I do know IE ads its own styles. Did you use a css reset? most cross browser issues can be fixed by this.

  3. Sounds like the combined width of the 2 floating divs exceeds the width of the wrapper. Try setting the wrapper width to 100% or no width... or reducing the width of the two floating divs.

  4. do you have any display: inline, block etc style properties set on any of those divs?

link|flag
ugh @ "IE ads its own styles"... sure browsers may differ on default styles, except in strict mode, but none of them add their own styles. – Andy E Jun 18 at 14:54
default styles is what I meant..I stand corrected – Dan Jun 18 at 15:01
vote up 0 vote down

What about setting display:inline-block and the width for both divs?

EDIT: Setting a max-width of %50 for each one would work in all browsers except IE6, assuming there's no padding/margin set.

link|flag
this could work... is inline-block supported by all browsers though? – Dan Jun 18 at 14:54
it works for me in IE7/IE8 and I know chrome supports it. If it doesn't work in IE6, it shouldn't make a difference anyway. – Andy E Jun 18 at 14:57

Your Answer

Get an OpenID
or

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