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.
我有一个在 Chrome 中运行良好的布局,但主要内容区域在应该为 100% 时提供滚动条。这可以在 IE 中更正吗?
此布局中主要内容区域为黑色:http: //jsfiddle.net/mp8nr/34/
#wrap {height:300px;}在像素中使用或#wrap {height:50%;}
#wrap {height:300px;}
#wrap {height:50%;}
听起来你不应该只关闭滚动条 -
poss 检查 CSS 中边距的使用。
您可以隐藏滚动条或使它们自动显示/隐藏:
CSS:
html, body { overflow: auto; }
这将解决你的问题。