当前位置 : 主页 > 网页制作 > css >

纯css 实现footer 一直在页面底部,不随页面滚动

来源:互联网 收集:自由互联 发布时间:2022-04-20
今天这个案例,我们希望footer一直在页面底部,来看看解决方案吧 css 复制代码 代码如下: html, body, #sticker {height: 100%;} body #sticker {height: auto; min-height: 100%;} #stickerCon {padding-bottom: 40px;}

今天这个案例,我们希望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>

上一篇:20个CSS/CSS3常用样式汇总
下一篇:没有了
网友评论