I have checked a lot of other questions similar to this, but it seems no solution works. I have a website that has a body, then an inner div called content. I have tried:
body
{
height: 100%;
}
content
{
height: 100%;
}
AND
body
{
}
content
{
position: absolute;
top: 0px;
bottom: 0px;
}
which were the answers to most of the questions. but for some reason it is not working for us. When we do the forcing with the absolute positioning, it stretches to more than the page length and also pushes our content to the left when we want it centered (using margin-left: auto; margin-right:auto;)
Any suggestions?