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:http: //jsfiddle.net/XhvEx/
<html>
您的#menu项目高度为 100% + 10px:
#menu
#menu { position:absolute; width:0px; height:100%; background:#4d4d4d; padding:5px; }
高度不包括填充。减少百分比高度,或从#menu.
100% 的高度与填充(在外面)似乎是导致它的原因。
在#menu 上,您已指定 100% 高度和 5px 填充。
元素的完整宽度/高度由其指定的宽度/高度+填充+边框+边距组成。
有关更多信息,请参阅CSS 盒子模型。