帮助创建子导航的 HTML 嵌套列表
我在创建子导航的嵌套列表时遇到问题。目前它是绝对定位的,但我不能让它的父级相对定位,因为父级父级上的溢出被隐藏,因此用户无法看到完整的子导航,任何人都可以解决这个问题吗?
请参阅 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?
Plese see the link for a jsfiddle example of what I mean.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该可以解决问题。实例: http://jsfiddle.net/7VkrG/53/
您需要删除
在
并给它一个高度,例如nav
上溢出:隐藏34px
。然后您需要调整子导航的位置,以便它显示在正确的位置:
This should do the trick. Live example: http://jsfiddle.net/7VkrG/53/
You need to remove
overflow:hidden
onnav
and give it a height instead e.g.34px
.Then you will want to adjust the positioning of the subnav so that it displays in the right place: