footer 在页面对底部

来源:互联网 发布:mac 怎么设置无线鼠标 编辑:程序博客网 时间:2024/05/01 03:49
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>测试底部footer</title><style type="text/css">html, body{height:100%;}#container {min-height:100%; /*使内容高度和body一样*/margin-bottom:-80px;/*向上缩减80像素,不至于footer超出屏幕可视范围*/}#content {padding-bottom:150px; /*这个是关键,处理页面高度超出屏幕可视范围时,控制内容和底部高度之间距离*/height:1600px;background-color: gray;}#footer {height:80px;}</style></head><body><div id="container"><div id="content">页面正文</div></div><div class="footer"></div></body></html>

0 0
原创粉丝点击