Footer in Bootstrap, that extends with content or sticks to the bottom

后端 未结 3 1450
灰色年华
灰色年华 2020-12-17 05:55

I have been looking for a way to add a footer to a Twitter Bootstrap 3 project I am working on.

What I want is for the footer to stick to the bottom of the page when

3条回答
  •  难免孤独
    2020-12-17 06:30

    CSS

     /*Sticky footer*/
        form , html, body {height: 100%;}
        body{background-color:inherit;}
        .wrapper{min-height:100%;height:auto!important;height:100%;margin:0 auto -4em}
        .footer,.push{height:4em}
    

    If you are not using ASP.NET then you may remove form{height:100%} from CSS

    HTML

    
    
    
    ....Content....

提交回复
热议问题