程序员

CSS固定底部的方法

2018-07-06  本文已影响14人  前端小兵

1. 使用flexbox布局实现

<body>
    <div class="wraper">
        <div class="content">
            content
        </div>
        <div class="footer">
            footer
        </div>
    </div>
</body>
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;
}

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

<body>
    <div class="wrapper">
        <div class="content">
            content
        </div>
        <div class="footer">
            footer
        </div>
    </div>
</body>
        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;
        }
上一篇 下一篇

猜你喜欢

热点阅读