The div container .wrapper
under #Wrapper
must fill the space between header and footer. So it should get the height of the #Wrapper container.
Could you help me?
The div container .wrapper
under #Wrapper
must fill the space between header and footer. So it should get the height of the #Wrapper container.
Could you help me?
The easy way, because your header and footer have specific heights, is to do the following:
// Add the following to #wrapper
#wrapper {
position: absolute;
top: 200px;
left: 0;
right: 0;
bottom: 200px;
// IMPORTANT
// REMOVE the following rule:
// min-height: 100%;
}
Remember to remove the min-height: 100%;
from #wrapper
Here's a fiddle. Good luck...