CSS Push Div to bottom of page

前端 未结 2 798
鱼传尺愫
鱼传尺愫 2020-12-08 20:42

I want the footer to always be at the bottom of the page even if the content doesn\'t push it all the way down. How can I make it just stay at the bottom of the page?

相关标签:
2条回答
  • 2020-12-08 21:26
     #footer { position: fixed; bottom: 0; }
    
    0 讨论(0)
  • 2020-12-08 21:33

    If you always want it to be at the bottom of the visible page even when the content pushes down further than the viewable area try absolutely positioning the div and adding a margin to the bottom of your page.

    0 讨论(0)
提交回复
热议问题