I am working with three different divs in my code.
There is one parent div and two child divs.
The styling for the parent div looks like this:
#parent {
overflow:auto;
margin: 0 auto;
margin-top:37px;
min-height: 100%;
width:875px;
}
Now, let's take a look at the styles for the two child divs:
#child1 {
overflow:auto;
min-height:150px;
border-bottom:1px solid #bbb;
background-color:#eee;
opacity:0.4;
}
#child2 {
height:100%;
background-color:white;
}
While the parent div extends to fill 100% of the page height, I've noticed that child2 does not extend all the way down to the bottom of the page like the parent div does.