IE6 li 标签未对齐

发布于 2024-10-08 00:17:09 字数 804 浏览 5 评论 0原文

我时间有点紧迫,所以很抱歉这篇文章很简短。

我正在尝试对齐这六个充当下拉菜单的 li 标签,IE7、IE8 和所有好的浏览器都可以正常工作,但 IE6 仍然很顽固,并将它们放在各处,您可以找到页面 此处

我正在使用此 CSS 将它们内联放置。

/* I beleive this is the important bit? FROM HERE */
li.rathdown {
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
    display: block;
}
/* TO HERE */

li.rathdown * {
    margin: 0;
    padding: 0;
    float: left;
}

li.rathdown ul {
    width: inherit;
    display: none;
    position: absolute;
    z-index: 100;
}

li.rathdown-sub {
    position: relative;
}

li.rathdown-sub ul {
    z-index: 99;
}

li.rathdown img.arrow {
    float: right;
    margin-right: 3px;
    padding: 3px;
}

我还有另一个问题,在IE7和IE8中页面底部稍微卷曲,有什么办法吗?

感谢您提供的任何建议。

I am a bit pressed for time so I am sorry that this is brief.

I am trying to align these six li tags that act as drop downs, IE7, IE8 and all the good browsers work fine but IE6 continues to be stubborn and put them all over the place, you can find the page here.

I am using this CSS to place them inline.

/* I beleive this is the important bit? FROM HERE */
li.rathdown {
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
    display: block;
}
/* TO HERE */

li.rathdown * {
    margin: 0;
    padding: 0;
    float: left;
}

li.rathdown ul {
    width: inherit;
    display: none;
    position: absolute;
    z-index: 100;
}

li.rathdown-sub {
    position: relative;
}

li.rathdown-sub ul {
    z-index: 99;
}

li.rathdown img.arrow {
    float: right;
    margin-right: 3px;
    padding: 3px;
}

I also have another problem, in IE7 and IE8 the bottom of the page curls up slightly, any ideas?

Thanks for any suggestions you can give.

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

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

发布评论

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

评论(1

伏妖词 2024-10-15 00:17:09

我现在已经修复了它们。底部的间隙是由于页面的高度造成的,我认为它在 IE 中被某些填充(???)缩短,并且菜单通过将样式应用于所有 li 来修复。

抱歉回答不好。这确实有点极端。

I have fixed them both now. The gap at the bottom was due to the height of the page, I think it was being shortend in IE by somethings padding (???) and the menu was fixed by applying the styles to all of the li's.

Sorry for the bad answer. It's a bit of an edge case really.

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