下拉菜单不起作用
的链接:http://jsfiddle.net/UL2LB/1/
这是小提琴 可以看到,我只在隐藏子列表和 nav 元素上指定了 z 索引,这两个元素都有显式定位。所以我的问题是,为什么我的子菜单仍然显示在
预先感谢您的任何答复。
Here is the link to the fiddle : http://jsfiddle.net/UL2LB/1/
As you can see, I only have specified z-indexes on the hidden sub-list and the nav element, both of which have explicit positioning. So my question is, why the hell is my sub-menu still showing on top of the <nav>
?
Thank you in advance for any answer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
给你的 ul 一个像素宽度,并添加
position:relative
到它的 li 中。Give your ul a pixel width and add
position:relative
to it the li.