如何创建一个贴在屏幕底部的页脚

时间:2010-12-21 21:42:27

标签: html

  

可能重复:
  CSS sticky footer

您好,

尽管侧面有滚动条,但如何在屏幕底部(而不是页面)创建页脚? 例如这样: http://www.sportingnews.com/

谢谢。

4 个答案:

答案 0 :(得分:1)

Fixed footer(与IE6兼容)

您可以看到演示here

答案 1 :(得分:0)

答案 2 :(得分:0)

有几种方法,每种方法都有自己的优点/缺点(尤其是浏览器兼容性。)可能最简单的是固定定位,这在IE6中无效。

.bar {
  bottom: 0;
  position: fixed;
  z-index: 2;  /* May need to be tweaked, depending on your design and functionality. */
}

如果您需要IE6兼容性,您可以实现一个JS文件,为IE6启用它(以及更多)。查看ie7.js

答案 3 :(得分:0)

<div style="position: fixed;bottom: 0px;">Footer text</div>