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

发布于 2024-08-20 05:42:04 字数 233 浏览 8 评论 0原文

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

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

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

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

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

I'm not a CSS guru and I'm seeking your help.

The following site www.jomea.com does not work properly in IE6. You cannot scroll down the page and it gets cut off.

The web designer who worked on the html/css cannot fix and has been wasting my time for the past couple of months.

style sheet for default page: ~/styles/jomea.css
style sheet for other page: ~/styles/jomea2.css

If anyone can figure out the problem it would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

坏尐絯℡ 2024-08-27 05:42:04

~/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; }

here's one potential issue in ~/styles/jomea.css

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

Overflow is hidden on this item, not sure if this is the problem item but you could experiment with this property.

here's a couple potential issues in ~/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; }
水染的天色ゝ 2024-08-27 05:42:04

我不是 100% 确定,但应该

body { overflow: auto }

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

I'm not 100% sure but a

body { overflow: auto }

should do the job. Alternatively, remove the height: 100% on the body and the html, but that could have unintended consequences in some places, you'd have to test.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文