|
Hi all,
I'm trying to create layout with CSS where there are 3 DIVs. The content need to have the height of all available space.
#Header
{
height: 50px;
width: 100%
}
#Content
{
margin: 0px 5px 0px 5px;
padding: 5px;
border: solid 1px blue;
height: (all available height);
overflow: auto;
}
#Footer
{
height: 50px;
width: 100%;
}
Please help. I've stucked with this for so many days already. Thank.
|