如何让页脚停留在网页的底部?
作者:wurtjq | 2023-09-05 20:13
如何解决《如何让页脚停留在网页的底部?》经验,为你挑选了6个好方法。
我有一个简单的2列布局,页脚可以清除标记中的左右div.我的问题是我无法在所有浏览器中让页脚停留在页面底部.如果内容向下推动页脚,它就可以工作,但情况并非总是如此.
更新:
它在Firefox中无法正常工作.当页面上没有足够的内容将页脚一直向下推到浏览器窗口的底部时,我在页脚下方看到一条背景颜色条.不幸的是,这是页面的默认状态.
1> Staale..:
要获得粘性页脚:
有一个与
class="wrapper"
你的内容.
右前收盘
的的wrapper
地方
.
权后收盘
的的
wrapper
地方
.
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -142px; /* the bottom margin is the negative value of the footer's height */
}
.footer, .push {
height: 142px; /* .push must be the same height as .footer */
}
它在带有