How to stick a footer to bottom in css?

后端 未结 12 493
别跟我提以往
别跟我提以往 2020-12-01 05:09

I am having the classic problem for the positioning of a Footer on the bottom of the browser. I\'ve tried methods including http://ryanfait.com/resources/footer-stick-to-bot

12条回答
  •  执笔经年
    2020-12-01 05:45

    Assuming you know the size of your footer, you can do this:

        footer {
            position: sticky;
            height: 100px;
            top: calc( 100vh - 100px );
        }
    

提交回复
热议问题