CSS box shadow on container div causes scrollbars

后端 未结 9 1502
难免孤独
难免孤独 2020-12-29 14:22

I have a website with the following setup:

9条回答
  •  孤城傲影
    2020-12-29 15:03

    On the parent element of #container, adding overflow: visible may fix the problem.

    Though as general advice for the footer at the bottom, you may want to instead forget about setting the min-height on #container and instead set footer with position: absolute and bottom: 0 and give #container a margin-bottom so it doesn't ever get hidden behind the footer. If you're going for having the footer at the bottom of the window just use position: fixed instead.

    Hope it helps.

提交回复
热议问题