Bootstrap 3 Flush footer to bottom. not fixed

前端 未结 13 2724
走了就别回头了
走了就别回头了 2020-12-02 04:07

I am using Bootstrap 3 for a site I am designing.

I want to have a footer like this sample. Sample

Please note that I don\'t want it FIXED so bootstrap navba

13条回答
  •  生来不讨喜
    2020-12-02 04:14

    This method uses minimal markup. Just put all your content in a .wrapper which has a padding-bottom and negative margin-bottom equal to the footer height (in my example 100px).

    html, body {
        height: 100%;
    }
    
    /* give the wrapper a padding-bottom and negative margin-bottom equal to the footer height */
    
    .wrapper {
        min-height: 100%;
        height: auto;
        margin: 0 auto -100px;
        padding-bottom: 100px;
    }
    .footer {
        height: 100px;
    }
    
    
    
    

    Your website content here.

提交回复
热议问题