css - IE6 中隐藏的滚动条(css 问题)

标签 css internet-explorer-6 scrollbar

我不是 CSS 专家,我正在寻求您的帮助。

以下网站 www.jomea.com 在 IE6 中无法正常工作。您无法向下滚动页面,页面会被切断。

负责 html/css 的网页设计师无法修复问题,在过去的几个月里一直在浪费我的时间。

默认页面的样式表:~/styles/jomea.css 其他页面的样式表:~/styles/jomea2.css

如果有人能解决这个问题,我们将不胜感激。

最佳答案

这是 ~/styles/jomea.css 中的一个潜在问题

ul.sponsored-results li ul { width:900px; margin-left:20px; overflow:hidden; }

此元素上隐藏了溢出,不确定这是否是问题元素,但您可以尝试使用此属性。

~/styles/jomea2.css 中存在一些潜在问题

#maincontainer {
    min-height:100%;
    height:auto !important;
    height:100%;
    position:relative;
    overflow:hidden;
    min-width:998px !important;
}

.content {width:570px; height:105px; overflow:hidden; padding:0 20px; text-align:left; color:#a0cb38; background:url(../images/faqs-bg.gif) no-repeat; }

关于css - IE6 中隐藏的滚动条(css 问题),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2178859/

相关文章:

html - 从小部件中删除 border-right

html - 当图像代码使用组合器或任何其他方式在它们之间时,如何仅将 css 应用于第一个中的第二个 div 元素?

jquery - Colorbox + Flowplayer IE6 问题

html - 按比例从 psd 实现页面

html - 子菜单项部分隐藏菜单容器

html - 即 : Divs move when window is resized too small

javascript - postMessage() 在 iF​​rame 和/或弹出窗口之间替代 ie6/7

javascript - 是否可以在IE中实现WebKit的Scrollbar效果?

javascript - 无法在 div 内移动滚动条

html - 可滚动的 div : how to detect scroll direction from OnScroll event for a scrollable div?