Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当内容部分没有太多文本时,这是一个工作代码: jsFiddle
解释,里面有什么:居中的内容+粘性页脚,点击链接时所有内容都会向下滑动。链接也向下滑动。当内容部分很小时,一切正常。
同样的代码在这里jsFiddle,与第一个链接的唯一区别是 html 内容:我添加了太多文本,所以你可以看到仍然没有滚动条来向下滚动页面。您看不到粘性页脚。为什么不显示滚动条?怎么修?
在您的 CSS 中,您拥有包含所有内容overflow: hidden;的div。#global-container因此,任何不适合 div 的内容都会被隐藏。
overflow: hidden;
#global-container
将其更改为overflow: auto;,一旦有很多内容,您将获得一个滚动条。
overflow: auto;