位置固定页脚,不带JavaScript

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了位置固定页脚,不带JavaScript相关的知识,希望对你有一定的参考价值。

A cool script for fixed Footers. Works with i6,i67,all mozilla browsers and safari.
  1. #footer{
  2. position:fixed;
  3. left:0px;
  4. bottom:0px;
  5. height:20px;
  6. width:100%;
  7. background:#999;
  8. }
  9. /* For ie 6*/
  10. * html #footer{
  11. position:absolute;
  12. top:expression((0-(footer.offsetHeight)+(document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight)+(ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop))+'px');
  13. }

以上是关于位置固定页脚,不带JavaScript的主要内容,如果未能解决你的问题,请参考以下文章

javascript 在没有Jquery的情况下停止页脚的固定位置

在页脚之前使固定位置 Div 停止

修复了操作栏,考虑了页脚

如何将页脚ID偏移到固定位置的底部

bootstrap - 位置不固定的粘性页脚在页面上出现一条奇怪的线

为啥不使用位置:固定为“粘性”页脚?