Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have 2 divs and I want to make their height equal:

var highestCol = $('#SecondColumn').height();
$('.column').first().height(highestCol);

I know that second div is always higher than first one. When there is plain text in both divs everything works fine. But after adding divs with some margin or padding into second div (always higher) the calculatio breaks. It takes height of higher div but ignores sum of all margins of child divs inside second column.

How can I calculate full div with margins/paddings?

share|improve this question

3 Answers

up vote 1 down vote accepted

I think you want outerHeight(true) rather than 'height()' to include the margins/paddings.

The 'true' refers to including the margins or not.

share|improve this answer
outerHeight() and outerHeight(true) returns same height for me. – Ockonal Mar 19 '12 at 13:00
That would suggest that the element having outerHeight called on it has no margins the API has a diagram at the top indicating what should be included - api.jquery.com/outerHeight – dougajmcdonald Mar 19 '12 at 13:17

Please try the following from the jQuery api.

http://api.jquery.com/outerHeight/

share|improve this answer

try this:

var highestCol = $('#SecondColumn')[0].offsetHeight;
$('.column').first().height(highestCol);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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