Make div stick to bottom of page

后端 未结 4 1075
南旧
南旧 2020-12-18 20:09

So I made a contact page and I want the footer div to be sticking to the bottom of the page not right after the contact form.

But if I put everything to

4条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-18 20:53

    You can probably use position: fixed to achieve this.

    .footer {
      position: fixed;
      bottom: 0;
    }
    

    With this you will need to offset the bottom of the page so would suggest adding a padding-bottom to .main that is the height of the footer.

    .main {
      padding-bottom: 30px /*whatever the height of your footer is*/
    }
    

提交回复
热议问题