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

时间:2010-02-01 17:55:59

标签: css internet-explorer-6 scrollbar

我不是CSS大师,我正在寻求你的帮助。

以下网站www.jomea.com在IE6中无法正常运行。你不能向下滚动页面,它会被切断。

在html / css上工作的网页设计师无法修复,并且在过去的几个月里一直在浪费我的时间。

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

如果有人能够找出问题,我们将不胜感激。

2 个答案:

答案 0 :(得分:2)

这是〜/ 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; }

答案 1 :(得分:1)

我不是100%肯定而是

body { overflow: auto }

应该做的工作。或者,删除正文上的height: 100%和html,但这可能会在某些地方产生意想不到的后果,您必须进行测试。