为什么这个下拉菜单是重叠的
我创建了一个 CSS 下拉菜单,但是当它下拉时,它被内容重叠,并且变得无用。
我该如何解决这个问题?
代码
问题已解决...谢谢...
I have created a CSS dropdown menu, but when it drops down, it is being overlapped by the content, and renders useless.
How do i fix this?
Code
QUESTION SOLVED...THANKS...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试更改下拉菜单的 z-index
http://www.w3schools.com/Css/pr_pos_z-index.asp
Try changing the z-index of the drop down menu
http://www.w3schools.com/Css/pr_pos_z-index.asp
将导航的 z-index 设置为高于内容,问题就会消失离开。为了使 z-index 在所有浏览器中正常工作,带有 z-index 的元素也有一个位置:相对或位置:绝对。
更新
Set your z-index of your nav higher than your content and the problem will go away. For z-index to work properly in all browsers the element with the z-index on it much also have a position:relative or position:absolute.
Update