I\'m struggling with a client project. All of my div
s have no absolute positioning, height:100%
for html
, body
, and conta
You have a float
in static-maincontent
, which removes it from the regular flow of the content of the document, and hence static-content
doesn't care about its height any more, and so won't expand to cover it.
Additionally, remove height:100%
for static-content
.
If height: 100% doesn't work well for you, you can try this calc function from CSS3:
/* Firefox */
height: -moz-calc(100%);
/* WebKit */
height: -webkit-calc(100%);
/* Standard */
height: calc(100%);
You can try this either with height, or with min-height, as already said. You can with this calc functions also other calculations like:
height: -moz-calc(100% - 50px);
And this is sometimes very useful, as you might guess.
If you have to use overflow:visible for some reason, there's other way to force container to stretch to contain all floated content. You have to put element with clear:both as a last container's elements. If you ignore ancient IEs (<8) you can do it with very simple css (vide https://css-tricks.com/snippets/css/clear-fix/):
.your-container:after {
content: "";
display: table;
clear: both;
}
You used the wrong overflow-y
property for clearing, and you should set a min-height
instead of a regular height. Try this:
#static-content {
background-color: #FFFFFF;
margin: 0 auto;
min-height: 100%; /* Set to minimum height so overflow doesn't get hidden */
overflow-y: hidden; /* HIDE overflow; I know, it doesn't make much sense */
position: relative;
width: 960px;
}
Given this green box which has a padding of 20px (for visibility), notice how a single red box floated to the left will expand past the boundary of its parent box. This is because floating content doesn't actually take up any "space" in the visual area. All other elements will expand underneath it, and only text will wrap around it.
In order to counter this and make the green box completely encompass the area of its child red box, we can add overflow: hidden
to its styles. This will expand the box down far enough.
You might think that just adding height: 100%
is the simplest way to make it expand to where it needs to be.However, the height
property specifies an absolute height. Since the content which is floated does not actually take up any vertical space, our overflow: hidden
property will cut off all the content that goes past the parent's height.
Since we want it to expand to at least a 100% height, we can use the min-height
property to force it there and still maintain the "automatic" height needed to make the parent green box fully encompass the child red box, letting it push past the 100% only when it needs too.
All elements, by default, are set to overflow: visible
so that property didn't really change anything. The only difference you had between this and the first example I provided was that you had a height: 100%
set on the element. So the parent was expanding to 100% height but still not encompassing the full height of its child red box.
READ FOR ANSWER!!!-- Okay so I had the same problem, All that was needed was to remove the "Positioning" Style. Should work perfectly fine.
height:100%
is the height of the content that flows with your container at hand and is not taking into account your floated content, so that is why the height of your container is stopping short. Remove it and clear your container properly to clear your floated elements within and it will work:
#static-content:before, #static-content:aftr {
display:table;
content:"";
}
#static-content:after {
clear:both;
}
#static-content {
zoom:1; /*ie fix*/
}