vote up 2 vote down star
1

My HTML code is just dividing the pages into two columns, 65%,35% respectively.

<div style="float : left; width :65%; height:auto;background-color:#FDD017;">
   <div id="response">
   </div> 
</div>
<div style="float : left; width :35%;height:auto; background-color:#FDD017;">
   <div id="note">
   </div>
</div>

In the response div, I have variable data; in the note div, I have fixed data. Even though the two divs have two different sets of data, I need them to display with the same height so that the background colors appear to fill a box containing both. Naturally, the problem is the response div, as its height varies depending on the amount of data currently being displayed within it.

How might I ensure that the height of the two columns are always equal?

flag

78% accept rate

4 Answers

vote up 3 vote down check

Wrap them in a containing div with the background color applied to it, and have a clearing div after the 'columns'.

<div style="background-color: yellow;">
  <div style="float: left;width: 65%;">column a</div>
  <div style="float: right;width: 35%;">column b</div>
  <div style="clear: both;"></div>
</div>
link|flag
Won't help if the two columns has different background colors. – Arve Systad Feb 8 at 22:42
His example does not have this requirement, thanks for the downvote though :). – meandmycode Feb 9 at 22:21
yes I agree But I Nominate +1 – venkatachalam Mar 20 at 3:36
vote up 5 vote down

You should wrap them in a div with no float.

<div style="float:none;background:#FDD017;" class="clearfix">
    <div id="response" style="float:left; width:65%;">Response with two lines</div>
    <div id="note" style="float:left; width:35%;">single line note</div>
</div>

I also use the clearfix patch on here http://www.webtoolkit.info/css-clearfix.html

link|flag
Won't help if the two columns has different background colors. Unless you know that one of the columns will always be longer than the other: Give the "wrapper" the backgorund color of the shortest column and let the longest column have its own background to "fake" two equally long columns. – Arve Systad Feb 8 at 22:44
@Arve Systad agreed, It doesn't seem like that is what the OP is looking for. – bendewey Feb 9 at 2:19
vote up 3 vote down

Here is a jQuery plugin to set the heights of multiple divs to be the same. And below is the actual code of the plugin.

$.fn.equalHeights = function(px) {
$(this).each(function(){
var currentTallest = 0;
$(this).children().each(function(i){
    if ($(this).height() > currentTallest) { currentTallest = $(this).height(); }
    	});
    if (!px || !Number.prototype.pxToEm) currentTallest = currentTallest.pxToEm(); //use ems unless px is specified
    	// for ie6, set height since min-height isn't supported
    if ($.browser.msie && $.browser.version == 6.0) { $(this).children().css({'height': currentTallest}); }
    	$(this).children().css({'min-height': currentTallest}); 
    });
    return this;
};
link|flag
vote up 0 vote down

I recommend you wrap them both in an outer div with the desired background color.

link|flag

Your Answer

Get an OpenID
or

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