美文网首页
css经典布局之stick footer布局

css经典布局之stick footer布局

作者: 这很重要吗 | 来源:发表于2017-07-25 18:44 被阅读0次
    image.png

    容器使用负的margin bottom

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8">
            <title>让footer固定在页面顶部</title>
            <style>
                * {
                    margin: 0;
                }
                
                html, body {
                    height: 100%;
                }
                
                .wrapper {
                    min-height: 100%;
                    height: auto !important; /* 如果你不需要考虑IE6,则可以把这行与下一行代码删除 */
                    height: 100%;
                    margin: 0 auto -4em;
                }
                
                .footer, .push {
                    height: 4em;
                }
                body{
                    text-align: center;
                }
                .footer{
                    background-color: #00BBFF;
                }
            </style>
        </head>
    
        <body>
            <div class="wrapper">
                <h3>你可以通过调整浏览器大小,查看footer的表现</h3>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
    
                <div class="push"></div>
            </div>
            <div class="footer">
                <p>Footer</p>
            </div>
        </body>
    </html>
    

    底部使用负的margin bottom

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8">
            <title>让footer固定在页面顶部</title>
            <style>
            html, body {
              height: 100%;
              margin: 0;
            }
            .content {
              min-height: 100%;
            }
            .content-inside {
              padding: 20px;
              padding-bottom: 50px;
            }
            .footer {
              height: 50px;
              margin-top: -50px;
              background-color: blue;
            }
            </style>
        </head>
    
       <body>
      <div class="content">
        <div class="content-inside">
         <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
                <p>我是占位的</p>
    
        </div>
      </div>
      <footer class="footer"></footer>
    </body>
    </html>
    

    转载自:https://w3ctrain.com/2016/06/24/stick-footer/

    相关文章

      网友评论

          本文标题:css经典布局之stick footer布局

          本文链接:https://www.haomeiwen.com/subject/pkhgkxtx.html