html – 如何将DIV锚定到页面的底部?

前端之家收集整理的这篇文章主要介绍了html – 如何将DIV锚定到页面的底部?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个固定宽度的DIV,我想保留在浏览器的视口的底部

不幸的是,我不知道我甚至会开始试图实现这一点。

显然,首先要做的就是设定立场。但除此之外…没有线索。

解决方法

看到css-tricks:

Fixed Footer

CSS:

#footer {
   position:fixed;
   left:0px;
   bottom:0px;
   height:30px;
   width:100%;
   background:#999;
}

/* IE 6 */
* html #footer {
   position:absolute;
   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');
}
原文链接:https://www.f2er.com/html/233319.html

猜你在找的HTML相关文章