On a two-column page, how can I grow the left div to the same height of the right div using CSS or Javascript? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T00:29:36Z http://stackoverflow.com/feeds/question/35699 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/35699/on-a-two-column-page-how-can-i-grow-the-left-div-to-the-same-height-of-the-right 11 On a two-column page, how can I grow the left div to the same height of the right div using CSS or Javascript? hoyhoy 2008-08-30T05:28:40Z 2009-02-27T08:59:30Z <p>I'm trying to make a two-column page using a div-based layout (no tables please!). Problem is, I can't grow the left div to match the height of the right one. My right div typically has a lot of content. </p> <p>Here's is a paired down example of my template to illustrate the problem.</p> <pre><code>&lt;div style="float:left; width: 150px; border: 1px solid;"&gt; &lt;ul&gt; &lt;li&gt;nav1&lt;/li&gt; &lt;li&gt;nav2&lt;/li&gt; &lt;li&gt;nav3&lt;/li&gt; &lt;li&gt;nav4&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;div style="float:left; width: 250px"&gt; Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna .... &lt;/div&gt; </code></pre> <p><img src="http://involution.com/images/divlayout.png" alt="alt text" /></p> http://stackoverflow.com/questions/35699/on-a-two-column-page-how-can-i-grow-the-left-div-to-the-same-height-of-the-right/35711#35711 8 Answer by DevelopingChris for On a two-column page, how can I grow the left div to the same height of the right div using CSS or Javascript? DevelopingChris 2008-08-30T05:44:35Z 2008-08-30T06:01:13Z <p>Your simplest answer lies in the next version of css (3), which currently no browser supports.</p> <p>For now you are relegated to calculating heights in javascript and setting them on the left side. </p> <p>If the navigation is so important to be positioned in such a way, run it along the top.</p> <p>you could also do a visual trick by moving the borders to the container and the bigger inner, and make it appear to be the same size.</p> <p>this makes it look the same, but it isn't.</p> <pre><code>&lt;div style="border-left:solid 1px black;border-bottom:solid 1px black;"&gt; &lt;div style="float:left; width: 150px; border-top: 1px solid;"&gt; &lt;ul&gt; &lt;li&gt;nav1&lt;/li&gt; &lt;li&gt;nav2&lt;/li&gt; &lt;li&gt;nav3&lt;/li&gt; &lt;li&gt;nav4&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;div style="float:left; width: 250px; border:solid 1px black;border-bottom:0;"&gt; Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna Lorem ipsum dolor sit amet, consectetur adipisicing elit, ... &lt;/div&gt; &lt;div style="clear:both;" &gt;&lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/35699/on-a-two-column-page-how-can-i-grow-the-left-div-to-the-same-height-of-the-right/35718#35718 0 Answer by DevelopingChris for On a two-column page, how can I grow the left div to the same height of the right div using CSS or Javascript? DevelopingChris 2008-08-30T05:52:03Z 2008-08-30T05:52:03Z <p>@hoyhoy</p> <p>If a designer can make this work in html, then he can have this design. If he is a true master of web design, he will realize that this is a limitation of the media, as video is not possible in magazine ads.</p> <p>If he would like to simulate weight by giving the 2 columns equal importance, than change the borders, so that they appear to be of the same weight, and make the colors of the borders contrast to the font color of the columns. </p> <p>But as for making the physical elements the same height, you can only do that with a table construct, or setting the heights, at this point in time. To simulate them appearing the same size, they don't have to be the same size.</p> http://stackoverflow.com/questions/35699/on-a-two-column-page-how-can-i-grow-the-left-div-to-the-same-height-of-the-right/35880#35880 3 Answer by Silviu Postavaru for On a two-column page, how can I grow the left div to the same height of the right div using CSS or Javascript? Silviu Postavaru 2008-08-30T11:04:10Z 2008-08-30T11:04:10Z <p>You can do it in jQuery really simple, but I am not sure JS should be used for such things. The best way is to do it with pure css.</p> <ol> <li><p>Take a look at <a href="http://www.alistapart.com/articles/fauxcolumns/" rel="nofollow">faux columns</a> or even <a href="http://www.communitymx.com/content/article.cfm?cid=AFC58" rel="nofollow">Fluid Faux Columns</a></p></li> <li><p>Also another technique(doesn't work on the beautiful IE6) is to position:relative the parent container. The child container(the nav list in your case) should be positioned absolute and forced to occupy the whole space with 'top:0; bottom:0;'</p></li> </ol> http://stackoverflow.com/questions/35699/on-a-two-column-page-how-can-i-grow-the-left-div-to-the-same-height-of-the-right/47403#47403 2 Answer by Nathan Long for On a two-column page, how can I grow the left div to the same height of the right div using CSS or Javascript? Nathan Long 2008-09-06T12:12:15Z 2008-09-06T12:12:15Z <p>This is one of those perfectly reasonable, simple things that CSS can't do. Faux Columns, as suggested by Silviu, is a hacky but functional workaround. It would be lovely if someday there was a way to say</p> <pre> div.foo { height: $(div.blah.height); } </pre> http://stackoverflow.com/questions/35699/on-a-two-column-page-how-can-i-grow-the-left-div-to-the-same-height-of-the-right/53010#53010 4 Answer by Bryan M. for On a two-column page, how can I grow the left div to the same height of the right div using CSS or Javascript? Bryan M. 2008-09-09T22:02:22Z 2008-09-09T22:02:22Z <p>It can be done in CSS! Don't let people tell you otherwise.</p> <p>The easiest, most pain-free way to do it is to use the <a href="http://www.alistapart.com/articles/fauxcolumns/" rel="nofollow">Faux Columns</a> method.</p> <p>However, if that solution doesn't work for you, you'll want to read up on <a href="http://www.positioniseverything.net/articles/onetruelayout/equalheight" rel="nofollow">this technique</a>. But be warned, this is the kind of CSS hackery that will make you wake up in a cold sweat in the middle of the night.</p> <p>The gist of it is that you assign a large amount of padding to the bottom of the column, and a negative margin of the same size. Then you place your columns in a container that has <code>overflow: hidden</code> set. More or less the padding/margin values allow the box to keep expanding until it reaches the end of the wrapper (which is determined by the column with the most content), and any extra space generated by the padding is cut off as overflow. It doesn't make much sense, I know...</p> <pre><code>&lt;div id="wrapper"&gt; &lt;div id="col1"&gt;Content&lt;/div&gt; &lt;div id="col2"&gt;Longer Content&lt;/div&gt; &lt;/div&gt; #wrapper { overflow: hidden; } #col1, #col2 { padding-bottom: 9999px; margin-bottom: -9999px; } </code></pre> <p>Be sure to read the entire article I linked to, there are a number of caveats and other implementation issues. It's not a pretty technique, but it works fairly well.</p> http://stackoverflow.com/questions/35699/on-a-two-column-page-how-can-i-grow-the-left-div-to-the-same-height-of-the-right/54779#54779 0 Answer by Bryan M. for On a two-column page, how can I grow the left div to the same height of the right div using CSS or Javascript? Bryan M. 2008-09-10T17:27:44Z 2008-09-10T17:27:44Z <p>Come to think of it, I've never done it with a bottom border on the column. It's probably just overflowing, and getting cut off. You might want to have the bottom border come from a separate element that's part of the column content.</p> <p>Anyway, I know it's not a perfect magic bullet solution. You might just have to play with it, or hack around its shortcomings.</p> http://stackoverflow.com/questions/35699/on-a-two-column-page-how-can-i-grow-the-left-div-to-the-same-height-of-the-right/396336#396336 0 Answer by sticks464 for On a two-column page, how can I grow the left div to the same height of the right div using CSS or Javascript? sticks464 2008-12-28T16:03:16Z 2008-12-28T16:03:16Z <p>This <strong>can</strong> be done with css using background colors</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt; &lt;title&gt;Untitled Document&lt;/title&gt; &lt;style type="text/css"&gt; * { margin: 0; padding: 0; } body { font-family: Arial, Helvetica, sans-serif; background: #87ceeb; font-size: 1.2em; } #container { width:100%; /* any width including 100% will work */ color: inherit; margin:0 auto; /* remove if 100% width */ background:#FFF; } #header { width: 100%; height: 160px; background: #1e90ff; } #content {/* use for left sidebar, menu etc. */ background: #99C; color: #000; float: right;/* float left for right sidebar */ margin: 0 0 0 -200px; /* adjust margin if borders added */ width: 100%; } #content .wrapper { background: #FFF; margin: 0 0 0 200px; overflow: hidden; padding: 10px; /* optional, feel free to remove */ } #sidebar { background: #99C; color: inherit; float: left; width: 180px; padding: 10px; } .clearer { height: 1px; font-size: -1px; clear: both; } /* content styles */ #header h1 { padding: 0 0 0 5px; } #menu p { font-size: 1em; font-weight: bold; padding: 5px 0 5px 5px; } #footer { clear: both; border-top: 1px solid #1e90ff; border-bottom: 10px solid #1e90ff; text-align: center; font-size: 50%; font-weight: bold; } #footer p { padding: 10px 0; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="container"&gt; &lt;!--header and menu content goes here --&gt; &lt;div id="header"&gt; &lt;h1&gt;Header Goes Here&lt;/h1&gt; &lt;/div&gt; &lt;div id="content"&gt; &lt;div class="wrapper"&gt; &lt;!--main page content goes here --&gt; &lt;p&gt;Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Duis ligula lorem, consequat eget, tristique nec, auctor quis, purus. Vivamus ut sem. Fusce aliquam nunc vitae purus. Aenean viverra malesuada libero. &lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id="sidebar"&gt; &lt;!--sidebar content, menu goes here --&gt; &lt;p&gt;Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Duis ligula lorem, consequat eget, tristique nec, auctor quis, purus.&lt;/p&gt; &lt;/div&gt; &lt;div class="clearer"&gt;&lt;/div&gt;&lt;!--clears footer from content--&gt; &lt;!--footer content goes here --&gt; &lt;div id="footer"&gt; &lt;p&gt;Footer Info Here&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/35699/on-a-two-column-page-how-can-i-grow-the-left-div-to-the-same-height-of-the-right/396350#396350 0 Answer by Burak Erdem for On a two-column page, how can I grow the left div to the same height of the right div using CSS or Javascript? Burak Erdem 2008-12-28T16:17:19Z 2008-12-28T16:17:19Z <p>There is also a Javascript based solution. If you have jQuery, you can use the below plugin.</p> <pre><code>&lt;script type="text/javascript"&gt; // plugin jQuery.fn.equalHeights=function() { var maxHeight=0; this.each(function(){ if (this.offsetHeight&gt;maxHeight) {maxHeight=this.offsetHeight;} }); this.each(function(){ $(this).height(maxHeight + "px"); if (this.offsetHeight&gt;maxHeight) { $(this).height((maxHeight-(this.offsetHeight-maxHeight))+"px"); } }); }; // usage $(function() { $('.column1, .column2, .column3').equalHeights(); }); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/35699/on-a-two-column-page-how-can-i-grow-the-left-div-to-the-same-height-of-the-right/500639#500639 0 Answer by rolf for On a two-column page, how can I grow the left div to the same height of the right div using CSS or Javascript? rolf 2009-02-01T11:33:33Z 2009-02-01T11:33:33Z <p>why do you torture urself... use a table...</p> http://stackoverflow.com/questions/35699/on-a-two-column-page-how-can-i-grow-the-left-div-to-the-same-height-of-the-right/594021#594021 0 Answer by Stiropor for On a two-column page, how can I grow the left div to the same height of the right div using CSS or Javascript? Stiropor 2009-02-27T08:54:22Z 2009-02-27T08:59:30Z <p>I use this to align 2 columns with ID "center" and "right":</p> <pre><code>var c = $("#center"); var cp = parseInt(c.css("padding-top"), 10) + parseInt(c.css("padding-bottom"), 10) + parseInt(c.css("borderTopWidth"), 10) + parseInt(c.css("borderBottomWidth"), 10); var r = $("#right"); var rp = parseInt(r.css("padding-top"), 10) + parseInt(r.css("padding-bottom"), 10) + parseInt(r.css("borderTopWidth"), 10) + parseInt(r.css("borderBottomWidth"), 10); if (c.outerHeight() &lt; r.outerHeight()) { c.height(r.height () + rp - cp); } else { r.height(c.height () + cp - rp); } </code></pre> <p>Hope it helps.</p>