Div height 100% and expands to fit content
If you just leave the height: 100%
and use display:block;
the div
will take as much space as the content inside the div
. This way all the text will stay in the black background.
Usually this problem arises when the Child elements of a Parent Div are floated. Here is the Latest Solution of the problem:
In your CSS file write the following class called .clearfix along with the pseudo selector :after
.clearfix:after {
content: "";
display: table;
clear: both;
}
Then, in your HTML, add the .clearfix class to your parent Div. For example:
<div class="clearfix">
<div></div>
<div></div>
</div>
It should work always. You can call the class name as .group instead of .clearfix , as it will make the code more semantic. Note that, it is Not necessary to add the dot or even a space in the value of Content between the double quotation "". Also, overflow: auto; might solve the problem but it causes other problems like showing the scroll-bar and is not recommended.
Source: Blog of Lisa Catalano and Chris Coyier
Here is what you should do in the CSS style, on the main div
display: block;
overflow: auto;
And do not touch height
Set the height
to auto
and min-height
to 100%
. This should solve it for most browsers.
body {
position: relative;
height: auto;
min-height: 100% !important;
}