将菜单悬停在表格单元内,存在 z 索引问题
在表格单元格 (td) 内有一个悬停菜单,并将 td 设置为 position:relative
,将菜单设置为 position:absolute
,如您所见,菜单呈现在边框和下面的文本后面:
Have a hover menu inside a table cell (td) and have the td set to position:relative
, the menu set to position:absolute
, and as you see the menu renders behind the border and text below:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这似乎是一个
z-index
问题,将您的table
设置为 CSS 中的z-index:0;
并将菜单设置为z-index:999;
请参阅:http://tjkdesign.com/articles /z-index/teach_yourself_how_elements_stack.asp 了解更多信息。
This seems like a
z-index
issue, set yourtable
to az-index:0;
in CSS and the menu toz-index:999;
See: http://tjkdesign.com/articles/z-index/teach_yourself_how_elements_stack.asp for further info.