开发者

Where is the space coming from at the bottom of the footer [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an 开发者_C百科extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center. Closed 11 years ago.

I have this page here and if you scroll to the bottom you can see a space at the bottom but for the life of me i cant seem to figure out what is causing it...any ideas..


It's the height specification on #footer-content-wrap.


you have:

body, html {
    height: 100%;
}

and

* {
    margin: 0;
    outline: 0 none;
    padding: 0;
}

as far as I know, the * is more of a hack for IE. Merge these two things together:

body, html {
    height: 100%;
    margin: 0;
    outline: 0 none;
    padding: 0;
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜