Keeping HTML footer at the bottom of the window if page is short

前端 未结 6 1051
日久生厌
日久生厌 2020-12-09 19:46

Some of my webpages are short. In those pages, the footer might end up in the middle of the window and below the footer is whitespace (in white). That looks ugly. I\'d like

6条回答
  •  一向
    一向 (楼主)
    2020-12-09 20:07

    HTML

    
        

    Lorem ipsum dolor sit amet consectetur...

    • One
    • Two
    • Three

    CSS

    body {
        min-height: 100%;
    }
    
    footer {
        position: absolute;
        bottom: 0;
    }
    

提交回复
热议问题