CSS 嵌套下拉菜单

发布于 2024-12-29 16:39:44 字数 223 浏览 0 评论 0原文

看看我的页面 http://81.216.141.82/flygklubb 将鼠标悬停在第一个菜单项“Flygplan”上,然后将鼠标悬停在第一个子项上。正如您所看到的,“DELTA 3000 MK2”的子项出现在该项目的顶部,但我希望该级别显示在第一级的右侧,但我不想有任何固定的位置值。我怎样才能做到这一点?

Have a look at my page at http://81.216.141.82/flygklubb
Hover the first menu item "Flygplan" and then hover the first child item. As you can see the child to "DELTA 3000 MK2" appears on top of that item, but i want that level to appear right to the first level, but i don't want to have any fixed values for position. How can i accomplish that?

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

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

发布评论

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

评论(1

不知在何时 2025-01-05 16:39:44

大致意思是:

#topnavigation ul li ul li ul{
  margin-top: -50px;
  margin-left: 140px;
}

应该这样做。它不一定是固定位置,而是与原始元素的更多相对位置。

Something alongst the lines of:

#topnavigation ul li ul li ul{
  margin-top: -50px;
  margin-left: 140px;
}

Should do it. It's not necessarily fixed positions, more relative positions to the original element.

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