CSS固定底部的方法

1. 使用flexbox布局实现

  • HTML:

    
content
  • 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:

    
content
  • 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固定底部的方法)