美文网首页程序员
CSS固定底部的方法

CSS固定底部的方法

作者: 前端小兵 | 来源:发表于2018-07-06 10:45 被阅读14次

1. 使用flexbox布局实现

  • HTML:
<body>
    <div class="wraper">
        <div class="content">
            content
        </div>
        <div class="footer">
            footer
        </div>
    </div>
</body>
  • CSS:
html,body {
    height: 100%;
}
.wraper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.wraper .content {
    flex: 1;
}
.wraper .footer {
    width: 300px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 auto;
    border:1px solid #000;
}

全局增加一个负值下边距等于底部高度

  • html:
<body>
    <div class="wrapper">
        <div class="content">
            content
        </div>
        <div class="footer">
            footer
        </div>
    </div>
</body>
  • CSS:
        html,body {
            height: 100%;
        }
        .wrapper {
            height: 100%;
        }
        .wrapper .content {
            min-height: 100%;
            margin-bottom: -50px;
        }
        .wrapper .footer {
            width: 300px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            background: #000;
            color:#fff;
            margin: 0 auto;
        }

相关文章

  • CSS粘住固定底部的5种方法

    CSS粘住固定底部的5种方法

  • CSS固定底部的方法

    1. 使用flexbox布局实现 HTML: CSS: 全局增加一个负值下边距等于底部高度 html: CSS:

  • CSS固定底部写法

    写在前面 如果本文对您有所帮助,就请点个关注吧! 一、问题描述 本文主要介绍一个Footer元素如何粘住底部,使其...

  • 5种实现CSS底部固定的方法

    我们经常会遇到到需要实现底部固定控件的界面,比如详情页,下面就罗列5个常用的方法 方法1:全局增加一个负值下边距等...

  • sticky-footer写法(用于fixed布局)

    有人经常问,我每次CSS布局position:fixed的时候,想要底部有个固定的元素类似这样 想要一直固定在底部...

  • CSS多种方法实现页面底部固定

    当我们在写页面时经常会遇到页面内容少的时候,footer会戳在页面中间或什么?反正就是不在最底部显示,反正就是很难...

  • CSS Footer固定底部处理

    Footer应用场景 自适应内容高度展示在页面最底部 固定于浏览器窗口底部 Footer 自适应内容高度展示在页面...

  • CSS粘住固定底部的5种方法

    本文主要介绍一个Footer元素如何粘住底部,使其无论内容多或者少,Footer元素始终紧靠在浏览器的底部。我们知...

  • 公共底部固定方法

    如果你有一个公共的底部,当页面高度低的时候,footer始终在页面的最下方,当页面高度高的时候,footer也会随...

  • 【css】footer固定在页面底部

    在chrome浏览器中,采用flexbox布局。 在支持flex布局的chrome浏览器中打开,没有问题。但是在I...

网友评论

    本文标题:CSS固定底部的方法

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