HTML5技术

footer置底 - 青丝锁刘peng

字号+ 作者:H5之家 来源:博客园 2016-05-17 12:00 我要评论( )

html代码: divdiv cass="header"/divdiv/divdiv/div /div 第一种情况:footer随着滚动条的滚动而滚动 .container{position:relative;width:100%;min-height:100%;} .body{padding-bottom:50px;} .footer{height:50px;position:absolute;bottom:0px;left:0px

html代码:

<div> <div cass="header"></div> <div></div> <div></div> </div>

第一种情况:footer随着滚动条的滚动而滚动 

.container{ position:relative; width:100%; min-height:100%; } .body{ padding-bottom:50px; } .footer{ height:50px; position:absolute; bottom:0px; left:0px; }

第二种情况:footer始终在其底部固定 

.container{ position:relative; width:100%; min-height:100%; } .body{ padding-bottom:50px; } .footer{ height:50px; position:fixed; bottom:0px; left:0px; }

注意: 
千万不能设置.container的高度为100%,否则将无法随滚动条的滚动而滚动.

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • Bootstrap之Footer页尾布局

    Bootstrap之Footer页尾布局

    2015-06-06 16:12

网友点评
/