div footer标签css实现位于页面底部固定
网站建设 2023-01-28 20:49www.1681989.com免费网站
作为一个页面仔你一定遇到过当一个HTML页面中含有较少的内容时,Web页面的“footer”部分随着飘上来,处在页面的半腰中间,给视觉效果带来极大的影响,让你的页面看上去很不好看,特别是现在宽屏越来越多,这种现象更是常见。那么如何将Web页面的“footer”部分永远固定在页面的底部呢?先来看下狼蚁网站SEO优化的代码吧
这是第一种方案,后面还有几种
HTML代码
复制代码
代码如下:<div class="contaer">
<div class="header">这是头部</div>
<div class="page clearfix">
<div class="left">left sidebar</div>
<div class="content">ma content</div>
<div class="right">right sudebar</div>
</div>
<div class="footer">footer section</div>
</div>
CSS代码
复制代码
代码如下:html,body{marg:0;paddg:0;height:100%}
.contaer{m-height:100%;height:auto !important;height:100%;/ie6不识别m-height,如上述处理/position:relative;}
.header{background:#ff0;paddg:10px;}
.page{width:960px;marg:0 auto;paddg-bottom:60px;/paddg等于footer的高度