Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Currently I have a problem with a div which will not adjust its height. The div is called "bodyInner".

HTML: http://pastebin.com/4CVcTGyy

CSS: http://pastebin.com/SL5cbJWS

share|improve this question

migrated from webmasters.stackexchange.com Mar 12 '12 at 16:04

2 Answers

I use CSS clearfix to solve this (very common) problem, though @Angio is right, you should make sure your floats are clearing correctly before trying it.

From the author:-

The problem happens when a floated element is within a container box, that element does not automatically force the container’s height adjust to the floated element. When an element is floated, its parent no longer contains it because the float is removed from the flow.

Paste the following code into your site's CSS file:-

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

And call clearfix on the floated element <div id="yourid" class="yourclass clearfix"> (the space between the classes is essential) and your problem is solved.

I've found this to be cross browser reliable and it's a very popular trick

share|improve this answer

You should post this on Stack Overflow and include a jsfiddle or link to your site so we can test it out in our browsers. But your #conLeft and #conRight are floated within your bodyInner and they won't push it down if that's what you mean by the div isn't adjusting in height. Try adding a clear:all style to an empty div after and outside your right column.

share|improve this answer

Your Answer

 
discard

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