Div 100%宽度跨浏览器firefox问题
如果您在 safari 中查看 http://www2.currensee.com ,页面宽度很好,但在 Firefox 中(至少3.6)有一个水平滚动条。我有什么想法可以解决这个问题吗?
If you look at http://www2.currensee.com in safari the page width is fine, but in firefox (3.6 at least) there is a horizontal scroll. Any ideas how I can fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
FF6里还好啊您可以尝试 CSS3 样式
html { Overflow-x:hidden; }
但我不确定它是否在 FF3.6 中实现。It's fine in FF6. You could try the CSS3 style
html { overflow-x:hidden; }
but I'm not sure if it was implemented in FF3.6.如果宽度为 100% 并且边距 > 0 你会得到一个滚动条,因为边距延伸到可见区域之外。
if width is 100% and margin is > 0 you will get a scroll bar because the margin is extending outside the visible area.
盒子阴影导致了错误。
A box shadow was causing the error.