Position footer at the bottom

前端 未结 6 953
抹茶落季
抹茶落季 2021-01-14 16:50

I would like to position the footer at the bottom of the page.

For example on the page where there\'s not much content, I still need the footer at the bottom, but if

6条回答
  •  清酒与你
    2021-01-14 17:40

    This can be done using CSS.

    1) setup a footer in your HTML

    
      ...
      
    
    

    2) Use CSS positioning to place it at the bottom.

    html {
      padding-bottom:50px;
      position:relative;
    }
    
    body {
      position:relative;
      min-height:100%;
    }
    
    #footer {
      position:absolute;
      left:0;
      right:0;
      bottom:0;
      height:50px;
    }
    

提交回复
热议问题