帮助创建子导航的 HTML 嵌套列表

发布于 2024-11-27 10:53:11 字数 201 浏览 0 评论 0原文

我在创建子导航的嵌套列表时遇到问题。目前它是绝对定位的,但我不能让它的父级相对定位,因为父级父级上的溢出被隐藏,因此用户无法看到完整的子导航,任何人都可以解决这个问题吗?

子导航示例

请参阅 jsfiddle 示例的链接,了解我的意思。

I am having trouble with my nested list that creates a subnav. Currently it is positioned absolutely, but I can not have it's parent positioned relatively as the overflow on the parents parent is hidden so the user cannot see the full sub nav, can anyone shed any light on a fix for this please?

Subnav Example

Plese see the link for a jsfiddle example of what I mean.

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

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

发布评论

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

评论(1

诠释孤独 2024-12-04 10:53:11

这应该可以解决问题。实例: http://jsfiddle.net/7VkrG/53/

您需要删除 nav 上溢出:隐藏并给它一个高度,例如34px

header nav {
  width:960px;
  border:1px solid red;
  height: 34px;  
}

然后您需要调整子导航的位置,以便它显示在正确的位置:

header nav li ul.dropdown {top: 5px;}

This should do the trick. Live example: http://jsfiddle.net/7VkrG/53/

You need to remove overflow:hidden on nav and give it a height instead e.g. 34px.

header nav {
  width:960px;
  border:1px solid red;
  height: 34px;  
}

Then you will want to adjust the positioning of the subnav so that it displays in the right place:

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