这篇文章主要介绍了如何使用纯css实现footer一直在页面底部不随页面滚动,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
css
代码如下:
html, body, #sticker {height: 100%;}
body > #sticker {height: auto; min-height: 100%;}
#stickerCon {padding-bottom: 40px;}
#footer {margin-top:-40px; height: 40px; width: 100%; text-align: center; line-height: 40px; color: #ABA498; font-size: 12px; background: #fafafa; border-top:1px solid #E7E7E7;}
html
代码如下:
<div id="sticker">
<div id="stickerCon"></div>
</div>
<div id="footer">footer</div>
感谢你能够认真阅读完这篇文章,希望小编分享的“如何使用纯css实现footer一直在页面底部不随页面滚动”这篇文章对大家有帮助,同时也希望大家多多支持编程网,关注编程网行业资讯频道,更多相关知识等着你来学习!