zoukankan      html  css  js  c++  java
  • 记一些让footer始终位于网页底部的方法

    上次说把网页的头部和尾部分离出来作为一个单独的文件,所有网页共用,这样比较方便修改,然而,,,我发现某些方法里尾部会紧跟在头部后面,把内容挤在下面。。而且有的页面内容少的话不能把尾部挤到最下面,所以,这次来研究一下怎么能让尾部一直在下面。。

    先把html代码放出来:

    <body>
    <div class="header">头部</div>
    
    <div class="content">
    内容<br />
    内容<br />
    内容<br />
    内容<br />
    
    同上,以下省略N行。。。
    </div>
    
    <div class="footer">尾部</div>
    </body>

    方法一:其实这个应该是始终位于浏览器窗口底部的方法,而不是位于网页底部的方法,就像是在浏览某些网页在未登录或者注册的时候下面始终有一行提示信息的样式,大概就和回到顶部按钮是一样的。。

    上个图:大概就是这样的

     CSS代码:

    body{position:relative;height:100%;}
    
    .content{background-color: gray;padding-bottom: 100px;}
    
    .footer{height: 100px;width: 100%;background-color: blueviolet;position: fixed;left: 0;bottom: 0;}

    需要给footer设置固定高度

     方法二: 这个是让footer位于网页底部的方法   固定footer高度+绝对定位

    body{position:relative;height:100%;}
    
    .content{background-color: gray;padding-bottom: 100px;}
    
    .footer{height: 100px;width: 100%;background-color: blueviolet;position: absolute;left: 0;bottom: 0;}

     在中间的内容部分加上padding-bottom是为了让内容能够完全显示不被footer覆盖,同时也要给footer设置固定高度

    方法三:固定footer高度+margin负值

    html代码有所不同:

    <body>

    <div class="wrap">
    <div class="header">头部</div>
    <div class="content">
    内容<br />
    内容<br />
    内容<br />
    内容<br />

    同上,以下省略N行。。。
    </div>
    <div class="footer">尾部</div>

    </div>
    </body>

    CSS代码:

    body{height: 100%;}
    .wrap{min-height: 100%;}
    .header{height: 100px;background-color: greenyellow;}
    .content{background-color: gray;padding-bottom: 100px;}
    .footer{height: 100px;width: 100%;background-color: blueviolet;margin-top: -100px;}

    内容里加padding-bottom同上

    附图:

    内容较少的时候:

    内容多的时候:

     

    在共用尾部的网页里测试也没问题 ԅ(¯﹃¯ԅ)妥妥的

  • 相关阅读:
    UIWebView stringByEvaluatingJavaScriptFromString的使用方法
    手动截图
    KVO与KVC的使用(转)
    LKDBHelper Sqlite操作数据库
    GCD多线程的使用
    ios --- 调用系统"设置"里的功能(转)
    ios开发小技巧(转)
    url字符串中含中文的转码方法
    ios 照片编辑的view封装
    字符串去空格
  • 原文地址:https://www.cnblogs.com/greedymonkey/p/6581356.html
Copyright © 2011-2022 走看看