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.
这次很简单的问题——为什么这个页面有滚动条?我想不出任何理由 - 用萤火虫检查了所有元素,甚至没有一个到达页面底部。
这是 CSSdesk:http ://cssdesk.com/hcAPj 谢谢
您将#sidebar元素定义为具有min-height:100%,但除了文档之外没有参考(具有显式高度设置的元素)。因此,100%使用了窗口(框架)的高度,并且由于它不与顶部齐平,因此它会从底部溢出。
#sidebar
min-height:100%
100%