ie7中的水平滚动条
我正在尝试构建一个基于黄金网格系统的流体布局网站,而不限制 IE7。
我的主体出现了不需要的水平滚动条。如果我强制宽度变小,它就会消失。然而,它不会是流体的。
布局看起来不错,只是右侧有一些不需要的间距,我无法解释导致水平滚动条的原因。
I'm trying to build a fluid layout website based on the Golden Grid System without limiting IE7.
I am getting an unwanted horizontal scrollbar for the body. If I force the width to be smaller, it will disappear. However, it will not be fluid.
The layout looks fine, just some unwanted spacing to the right that I cannot account for which is causing the horizontal scrollbar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个问题出现在标题元素中。尝试添加
.如果删除
display: block
或添加overflow:hidden
滚动条会消失,而且还会导致设计崩溃。This issue is in header element. try adding
<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
. If you removedisplay: block
or addoverflow: hidden
scrollbar disapear, but also design crashes.