菜单项定位问题

发布于 2024-12-18 20:54:28 字数 270 浏览 1 评论 0原文

我正在尝试创建一个标题菜单。 请在此处查看我的代码: http://jsfiddle.net/kc2cc/

我的意图是,如果用户单击菜单项(徽标、位置、事件或组),则单击的元素将向下移动 1px,直到单击为止,它会返回到原始位置。 在 Chrome 15 中,一切正常,但在 Firefox 和 IE 中,如果我单击元素,所有元素都会向下移动。

原因是什么?我该如何解决? 谢谢

I'm trying to create a header menu.
Please see my code here: http://jsfiddle.net/kc2cc/ .

My intention was that, if user clicks on of the menu items (logo, places, events or groups) then the clicked element will move down 1px, and until click it comes back to original position.
In Chrome 15 everything works fine, but in Firefox and IE if I click on element all the elements move down.

What is the reason, and how can I fix it?
Thanks

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

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

发布评论

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

评论(2

你好,陌生人 2024-12-25 20:54:28

我真的不知道为什么,但似乎是 ul#navigation li 的默认值 baseline 导致了问题。将其更改为 middle 或其他任何内容都可以解决该问题。

ul#navigation li {
    border-right: 1px solid #F5F5F5;
    display: inline-block;
    height: 35px;
    vertical-align: middle;
}

I don't really know why but it seems it's the default value baseline for ul#navigation li which causes the problem. Change it for middle or anything else will solve it.

ul#navigation li {
    border-right: 1px solid #F5F5F5;
    display: inline-block;
    height: 35px;
    vertical-align: middle;
}
春夜浅 2024-12-25 20:54:28

设置 vertical-align: top


  • http://jsfiddle.net/kc2cc/13/
  • set vertical-align: top for <li>
    http://jsfiddle.net/kc2cc/13/

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