Div 悬停在另一个 Div 上 - 高度/宽度
我试图让一个 div 悬停在另一个充满内容的 div 上。这可以使用position:absolute 和z-index 来完成。问题是我希望悬停的 div 与充满内容的 div 具有相同的高度和宽度。
我已经尝试过 100% 的高度和宽度,但自从我写道:
<div class=hover></div><div id=content>FULL OF CONTENT</div>
悬停 div 无法识别内容 div 的高度和宽度是多少。
有什么建议吗?
I am attempting to have one div hovering over another div full of content. This can be done using position:absolute and z-index. The problem is I want the hovering div to be the same height and width of the div full of content.
I've tried 100% height and width, but since I wrote:
<div class=hover></div><div id=content>FULL OF CONTENT</div>
the hover div doesn't recognize what the height and width of the content div is.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将悬停 div 放在另一个 div 内:
悬停 div 可能仅位于内容上方。如果您在外部 div 上设置任何边框或边距,则悬停 div 将不会覆盖它。
Put the hovering div inside the other div:
The hover div may be only over the content. If you set any borders or margins on the outer div, the hover div will not cover that.