Div Alignment FireFox, IE7, IE6 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T13:34:25Z http://stackoverflow.com/feeds/question/1015601 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1015601/div-alignment-firefox-ie7-ie6 1 Div Alignment FireFox, IE7, IE6 Andrew Kharlamov 2009-06-18T22:54:54Z 2009-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#1015620 4 Answer by Paolo Bergantino for Div Alignment FireFox, IE7, IE6 Paolo Bergantino 2009-06-18T22:58:49Z 2009-06-18T22:58:49Z <p>Yeah, this is possible:</p> <pre><code>&lt;table&gt; &lt;tr&gt; &lt;td&gt;&lt;/td&gt; &lt;td rowspan='2'&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td colspan='2'&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>I'm only kidding, of course. </p> http://stackoverflow.com/questions/1015601/div-alignment-firefox-ie7-ie6/1015640#1015640 1 Answer by ropstah for Div Alignment FireFox, IE7, IE6 ropstah 2009-06-18T23:04:54Z 2009-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>&lt;style type="text/css"&gt; #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;} &lt;/style&gt; &lt;div id="container"&gt; &lt;div id="left"&gt; &lt;div id="left_1"&gt;left 1&lt;/div&gt; &lt;div id="left_2"&gt;left 2&lt;/div&gt; &lt;/div&gt; &lt;div id="right"&gt;right&lt;/div&gt; &lt;div id="bottom"&gt;bottom&lt;/div&gt; &lt;/div&gt; </code></pre>