内容简介:写在最前:Sticky Footer是css的一种布局场景。页脚footer永远固定在页面的底部,页面内容不够长的时候页脚黏在视窗底部,内容足够长时会被向下移动。老式门户网站由于内容过短常常版权页脚前移,移动端特定布局也需要Sticky Footer来解决这些问题。以上方法各有优劣,根据使用场景选择合适的方案
写在最前:Sticky Footer是css的一种布局场景。页脚footer永远固定在页面的底部,页面内容不够长的时候页脚黏在视窗底部,内容足够长时会被向下移动。老式门户网站由于内容过短常常版权页脚前移,移动端特定布局也需要Sticky Footer来解决这些问题。
一、利用绝对定位和padding完美兼容
已知底部高度,利用绝对定位和padding完美兼容
https://codepen.io/qietuniu/pen/KYxMwv- 去除标签多余的margin,padding,给html和body设置100%
- 外部容器min-height为100%,使得内容少时也能撑开
- 主体内容设置padding-bottom,这个为底部的高度,可以使内容完全显示否则会使主体内容有底部面积大小区域被遮挡
- footer高度固定,进行绝对定位
DOM节点
<div class="container"> <div class="header"></div> <div class="section"> </div> <div class="footer">Copyright© 1994-2019 切图妞</div> </div>
样式代码
html, body { height: 100%; } .container { position: relative; min-height: 100%; height: auto !important; height: 100%; /*IE6不识别min-height*/ } .section { padding-bottom: 60px; } .footer { position: absolute; width: 100%; height: 60px; bottom: 0px; }
二、利用padding-bottom和margin-top完美兼容
已知底部高度,利用padding-bottom和margin-top完美兼容
https://codepen.io/qietuniu/pen/dLqpdR- 去除标签多余的margin,padding,给html和body设置100%;
- 外部容器min-height为100%,使得内容少时也能撑开
- 主体内容设置padding-bottom,这个为底部的高度
- footer高度固定,margin-top的值为高度负值
DOM节点
<div class="container"> <div class="header"></div> <div class="section"> </div> <div class="footer">Copyright© 1994-2019 切图妞</div> </div>
样式代码
html, body { height: 100%; } .container { min-height: 100%; height: auto !important; height: 100%; /*IE6不识别min-height*/ } .section { padding-bottom: 60px; } .footer { position: relative; margin-top: -60px; width: 100%; height: 60px; }
三、新增块级元素填补页脚遮挡
已知底部高度,新增块级元素填补页脚遮挡,实现完美兼容
https://codepen.io/qietuniu/pen/dLqpez- 去除标签多余的margin,padding,给html和body设置100%;
- 外部容器min-height为100%,使得内容少时也能撑开
- 主体内容设置margin-bottom,值为底部的高度的负值
- footer位置在与container同级,section同级新增块元素.底部和新增块元素高度一致
DOM节点
<div class="container"> <div class="header"></div> <div class="section"> </div> </div> <div class="footer">Copyright© 1994-2019 切图妞</div>
样式代码
html, body { height: 100%; } .container { min-height: 100%; height: auto !important; height: 100%; /*IE6不识别min-height*/ margin-bottom: -60px; } .placeholder, .footer { height: 60px; }
四、用表格属性实现完美兼容
底部不定高度,利用表格属性实现完美兼容
https://codepen.io/qietuniu/pen/QPVKVR- 去除标签多余的margin,padding,给html和body设置100%
- 外部容器min-height为100%;使得内容少时也能撑开,display属性设置为table
- 主体内容display属性设置为table-row,高度设置为100%
DOM节点
<div class="container"> <div class="header"></div> <div class="section"> </div> <div class="footer">Copyright© 1994-2019 切图妞</div> </div>
样式代码
html, body { height: 100%; } .container { display: table; width: 100%; min-height: 100%; } .section { display: table-row; height: 100%; }
五、calc计算
vh存在兼容有限,一般在移动端使用。100vh可代替body和html的100%来拿到视口高度实现效果
https://codepen.io/qietuniu/pen/NmLRmV- 外部容器使用calc计算,100vh减去底部高度
- footer位置与container同级,高度固定
- 主体内容display属性设置为table-row,高度设置为100%
DOM节点
<div class="container"> <div class="header"></div> <div class="section"> </div> </div> <div class="footer">Copyright© 1994-2019 切图妞</div>
样式代码
.container { min-height: calc(100vh - 60px); } .footer { height: 60px; }
六、flex弹性布局
底部不定高度,利用flex弹性布局实现效果,兼容性有限建议移动端使用
https://codepen.io/qietuniu/pen/EJeNYW- 外部容器display设为flex弹性布局,flex-flow设置方向为column纵向并设置最小高度为100vh
- 主体内容flex属性设为1
DOM节点
<div class="container"> <div class="header"></div> <div class="section"> </div> <div class="footer">Copyright© 1994-2019 切图妞</div> </div>
样式代码
.container { display: flex; flex-flow: column; min-height: 100vh; } .section { flex: 1 }
七、Grid网格布局
底部不定高度,利用Grid网格实现效果,兼容性有限建议移动端使用
https://codepen.io/qietuniu/pen/EJeNYW- 外部容器display设为grid网格布局,grid-template-rows设置一个网格的行,fr单位可以帮助我们创建一个弹列的网格轨道,它代表了网格容器中可用的空间(就像Flexbox中无单位的值)
- header头部的位置放在主体内容内部
- footer中grid-row-start和grid-row-end属性设置单元格开始和结束的行线
DOM节点
<div class="container"> <div class="header"></div> <div class="section"> </div> <div class="footer">Copyright© 1994-2019 切图妞</div> </div>
样式代码
.container { min-height: 100vh; display: grid; grid-template-rows: 1fr auto; } .footer { grid-row-start: 2; grid-row-end: 3; }
结语
以上方法各有优劣,根据使用场景选择合适的方案
场景 | 方案 |
---|---|
兼容性要求高 | ①②③ |
底部不固定高度 | ④⑥⑤⑦ |
PC端建议 | ①② |
移动端建议 | ①②⑥ |
尊重原创,如需转载请注明出处!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- CSS粘性定位是怎样工作的
- CSS粘性定位 sticky 详解(纯干货)
- 使用jQuery和CSS创建一个粘性标题栏
- 深入理解position sticky粘性定位的计算规则
- chatbot系列:引导及个性化推荐提升用户粘性
- 优秀的制作粘性侧边栏效果的jQuery插件:Sticky Sidebar
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。