【发布时间】:2014-05-02 15:23:12
【问题描述】:
我已经数不清我读过多少关于这个主题的帖子了。坦率地说,我不是 CSS 专家。我预订了一个在 Firefox 和 Chrome 中完美运行但在 IE9 及更高版本中失败的“粘性页脚”。 (它在IE中的位置随浏览器窗口的高度而变化。在其他浏览器中它固定在底部。)
css如下:
#footer {
position:relative;
margin-top: -150px;
height: 150px;
clear: both;
bottom:0px;
}
html(在母版页中)如下:
<footer>
<div id="footer">
<div style="margin: auto;">
</div>
<br />
<div style="text-align: center; margin: auto; margin-left: auto;
margin-right: auto; width: 100%; margin-bottom: auto">
<p>© Copywrite blurb and date here</p>
</div>
</div>
</footer>
建议?
【问题讨论】:
标签: html css internet-explorer footer sticky