即使与“位置”配对,Z 索引也不起作用。
我已经发布了jsfiddle 的源代码。
正如您将看到的,标题出现在图像下方。我已经尝试按照另一个 stackoverflow 线程中的建议将 z-index 与位置配对,但仍然没有运气。
如有任何反馈,我们将不胜感激。
I've posted the source to jsfiddle.
As you'll be able to see, the caption appears below the images. I've tried pairing z-index with position as suggested in another stackoverflow thread, but still no luck.
Any feedback is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
caption
div 上的position:absolute
会害死你 - 让它与position:relative
一起工作,你就会没事的。The
position: absolute
on thecaption
divs are killing you - make it work withposition: relative
and you'll be fine.