为什么我的网站页脚会停留在页面顶部?

时间:2016-11-20 02:23:12

标签: html css wordpress

This is a Wordpresss site and I believe this is a theme issue that is causing the footer to stick to the top of the page.

我无法找到针对该问题的网站范围内的修复方法。我用过:

.l-footer {
position:absolute;
bottom:0;
}

它只是让页脚完全消失。

2 个答案:

答案 0 :(得分:0)

还尝试position:relativeposition:fixeddisplay:block。一旦你找到合适的人,就要记下他们的工作方式,并看看他们所做的改变。

答案 1 :(得分:0)

编辑:

试试这个:

.somefooter {
    display:inline-block;
    overflow: hidden;
}

通过我认为其中一个应该这样做,将它们放在你的页脚标签中。

相关问题