Bootstrap 3 Flush footer to bottom. not fixed

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

    UPDATE: This does not directly answer the question in its entirety, but others may find this useful.

    This is the HTML for your responsive footer

    For the CSS

    footer{
        width:100%;
        min-height:100px;    
        background-color: #222; /* This color gets inverted color or you can add navbar inverse class in html */
    }
    

    NOTE: At the time of the posting for this question the above lines of code does not push the footer below the page content; but it will keep your footer from crawling midway up the page when there is little content on the page. For an example that does push the footer below the page content take a look here http://getbootstrap.com/examples/sticky-footer/

提交回复
热议问题