如何停止下拉菜单向下推页面?

发布于 2024-11-19 21:05:12 字数 168 浏览 1 评论 0原文

如何停止下拉菜单向下推页面?

当我将鼠标悬停在服务按钮上时,它会向下推页面内容。

http://jsfiddle.net/tPh9P/

如果您能提供帮助,谢谢。

How do I stop my dropdown menu pushing down the page?

When I hover over the services button it pushes down the page contents.

http://jsfiddle.net/tPh9P/

Thanks if you can help.

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

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

发布评论

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

评论(1

怎会甘心 2024-11-26 21:05:12

将其更改

ul#main-nav li ul {
    padding:0;
    display:none;
}

为:

ul#main-nav li ul {
    position:fixed;
    padding:0;
    display:none;
}

现场演示。

(顺便说一句,将来最好发布 HTML /CSS/Stack Overflow 上的一般编码问题,如果可以的话,请在您的问题中包含示例代码。)

Change this:

ul#main-nav li ul {
    padding:0;
    display:none;
}

to this:

ul#main-nav li ul {
    position:fixed;
    padding:0;
    display:none;
}

Live demo.

(By the way, in future, it's best to post HTML/CSS/general coding questions on Stack Overflow, and include the sample code in your question if you can.)

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