CSS Sticky Footer Margin

后端 未结 4 1652
眼角桃花
眼角桃花 2020-12-18 04:26

I do NOT want a FIXED footer, I need a STICKY footer.

My sticky footer worked fine at first but when the content is at a certain height, there is a

4条回答
  •  一向
    一向 (楼主)
    2020-12-18 04:40

    I was having the same issue for ages and nothing seemed to work then I realised that the whitespace I was seeing under my footer was not actually whitespace at all but the overflow from my footer with white text on a white background. All I had to do was to add:

    overflow:hidden
    

    to my footer in my css.

    If anyone wants the solution that worked for me then it is the same as http://getbootstrap.com/2.3.2/examples/sticky-footer.html but with the added overflow:hidden

提交回复
热议问题