Bootstrap 3 Flush footer to bottom. not fixed

前端 未结 13 2726
走了就别回头了
走了就别回头了 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:13

    See the example below. This will position your Footer to stick to bottom if the page has less content and behave like a normal footer if the page has more content.

    CSS

    * {
        margin: 0;
    }
    html, body {
        height: 100%;
    }
    .wrapper {
        min-height: 100%;
        height: 100%;
        margin: 0 auto -155px; /* the bottom margin is the negative value of the footer's height */
    }
    .footer, .push {
        height: 155px; /* .push must be the same height as .footer */
    }
    

    HTML

    Your website content here.


    UPDATE: New version of Bootstrap demonstrates how to add sticky footer without adding a wrapper. Please see Jboy Flaga's Answer for more details.

提交回复
热议问题