Div Alignment FireFox, IE7, IE6 - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T13:34:25Zhttp://stackoverflow.com/feeds/question/1015601http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1015601/div-alignment-firefox-ie7-ie61Div Alignment FireFox, IE7, IE6Andrew Kharlamov2009-06-18T22:54:54Z2009-06-18T23:21:56Z
<p>I am having problems aligning a couple divs in IE6, IE7, IE8 and Firfox 3. They all don't render correct what IE8 and Firefox like the rest don't.</p>
<p>Is it possible to do this via floats and clears.. they dont need to have any spacing between them, I just drew it this way.... Also, the div's should be fixed widths.</p>
<p><img src="http://cowfarm.net/divAlign.png" alt="alt text" /></p>
http://stackoverflow.com/questions/1015601/div-alignment-firefox-ie7-ie6/1015620#10156204Answer by Paolo Bergantino for Div Alignment FireFox, IE7, IE6Paolo Bergantino2009-06-18T22:58:49Z2009-06-18T22:58:49Z<p>Yeah, this is possible:</p>
<pre><code><table>
<tr>
<td></td>
<td rowspan='2'></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td colspan='2'></td>
</tr>
</table>
</code></pre>
<p>I'm only kidding, of course. </p>
http://stackoverflow.com/questions/1015601/div-alignment-firefox-ie7-ie6/1015640#10156401Answer by ropstah for Div Alignment FireFox, IE7, IE6ropstah2009-06-18T23:04:54Z2009-06-18T23:21:56Z<p>You won't get equal heights for the 2 left DIVs combined and the right DIV. Unless ofcourse you specify those, or if the contents produce the same heights... But this shouldn't be a problem i think?</p>
<p><strong>Update</strong></p>
<pre><code><style type="text/css">
#container {float:right;position:relative;}
#left {float:left;}
#left_1 {float:left;}
#left_2 {clear:left;float:left;}
#right {float:right;}
#bottom {float:left;clear:both;}
</style>
<div id="container">
<div id="left">
<div id="left_1">left 1</div>
<div id="left_2">left 2</div>
</div>
<div id="right">right</div>
<div id="bottom">bottom</div>
</div>
</code></pre>