Empty Space at the bottom of the Page

135 Views Asked by At

A big blank/empty space generated after the footer container. My layout seems to be as

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html xmlns="http://www.w3.org/1999/html">
    <head></head>
    <body id="cms-body" class="yui-skin-sam">
        <div id="mainContainer" class="clearFix">
            <div id="headerDiv"></div>
            <div id="bodyDiv"></div>
            <div id="footerDiv"></div>
        </div>
    </body>
</html>

We are using Yahoo YUI Js/Styles on our application. Issue raised when i navigate from more content page to less content page.

For instance: Big form page to less content page.

Please guide me to resolve the issue.

Thanks in advance.

4

There are 4 best solutions below

0
On BEST ANSWER

Problem due to visibility:hidden property of YUI. Instead of it, use display:none property, so, it reduces the blank white space at the footer.

0
On

this should be your last div

<div id="footerDiv"> 
1
On

Did you specify the height of the parent div?

0
On

Can you try the below style property,

#footerDiv{
 bottom: 0px;
 margin-left: 0px;
 position: relative;
}