The second floating div in chrome clears down before first div. - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T10:19:50Zhttp://stackoverflow.com/feeds/question/1013027http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1013027/the-second-floating-div-in-chrome-clears-down-before-first-div0The second floating div in chrome clears down before first div.Jesse2009-06-18T14:39:55Z2009-06-18T15:00:59Z
<p>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?</p>
http://stackoverflow.com/questions/1013027/the-second-floating-div-in-chrome-clears-down-before-first-div/1013062#10130620Answer by Bryan Migliorisi for The second floating div in chrome clears down before first div.Bryan Migliorisi2009-06-18T14:44:58Z2009-06-18T14:44:58Z<ol>
<li><p>The HTML and CSS would be useful to answer this.</p></li>
<li><p>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.</p></li>
</ol>
http://stackoverflow.com/questions/1013027/the-second-floating-div-in-chrome-clears-down-before-first-div/1013096#10130960Answer by Dan for The second floating div in chrome clears down before first div.Dan2009-06-18T14:49:38Z2009-06-18T14:49:38Z<ol>
<li><p>Without a code example this really is just guessing</p></li>
<li><p>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. </p></li>
<li><p>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. </p></li>
<li><p>do you have any display: inline, block etc style properties set on any of those divs?</p></li>
</ol>
http://stackoverflow.com/questions/1013027/the-second-floating-div-in-chrome-clears-down-before-first-div/1013100#10131000Answer by Andy E for The second floating div in chrome clears down before first div.Andy E2009-06-18T14:50:36Z2009-06-18T15:00:59Z<p>What about setting display:inline-block and the width for both divs? </p>
<p>EDIT: Setting a max-width of %50 for each one would work in all browsers except IE6, assuming there's no padding/margin set.</p>