当鼠标悬停在内容上时 IE7 鼠标悬停导航块消失

发布于 2024-11-29 00:35:59 字数 267 浏览 1 评论 0原文

在浏览器测试期间:http://www.interiorsolutions.uk.com

顶部导航包括翻转导航建筑服务、外部服务和商业。导航是在链接悬停时触发的 CSS,适用于所有浏览器。

在 IE7 中,当鼠标指针移过第二个链接时,导航消失。所有 z 索引均已适当设置,即使在进一步注释掉内容时,也会表现出相同的行为。

有什么想法会很棒吗?

During browser testing at: http://www.interiorsolutions.uk.com

The top navigation includes rollover navigation for building services, exterior services and commercial. The navigation is CSS triggered on hover of the links and works in all browsers.

In IE7 when the mouse pointer moves past the second link the navigation dissappears. All z-indexes are set appropriately and even when commenting out content further down the same behaviour is exhibited.

Any ideas would be great?

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

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

发布评论

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

评论(1

辞慾 2024-12-06 00:35:59

更改

#masthead nav ul #nav-service ul li
{
    text-align:left !important;
    float:none !important;
}

#masthead nav ul #nav-service ul li
{
    text-align:left !important;
    clear:both;
    width:100%;
}

并查看是否修复它

Change

#masthead nav ul #nav-service ul li
{
    text-align:left !important;
    float:none !important;
}

to

#masthead nav ul #nav-service ul li
{
    text-align:left !important;
    clear:both;
    width:100%;
}

and see if that fixes it

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