我的页脚有一些问题

时间:2013-11-10 18:51:20

标签: html css

我正在开发一个包含页脚的简单html网页但页脚无法正常工作!

我希望页脚位于页面底部,但是......!

这就是问题:

enter image description here

这是我的网页演示(对不起语言;)):http://gooloop.ir/dl/site/temp.html

1 个答案:

答案 0 :(得分:2)

overflow:hidden添加到.content

内容正在崩溃,因为它没有任何明确的尺寸,因此页脚被放置在它上面。

.content {
    width: 962px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
    overflow: hidden;
}

它会起作用。在开发工具中测试过。