图像 Z 索引,使框架位于图像前面
HTML、CSS 大师:)
我正在在不断变化的图像上制作图像框架。抱歉我的英语不好,我会尝试解释一下,你可以在这里看到现场演示:
http://jsfiddle. net/thisizmonster/fWUKn/
我想要的是银色背景框架应该覆盖幻灯片图像。现在框架位于 Flinstones 图像后面。
HTML, CSS gurus :)
I'm making image frame over images which changes all time. Sorry for my bad English, I'll try it explain, you can see live demo here:
http://jsfiddle.net/thisizmonster/fWUKn/
What I want is silver background frame should cover the slideshow images.Now the frame is behind the Flinstones image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
z-index 仅适用于
position:absolute
、position:relative
或position:fixed。
将其中之一添加到您的元素中将解决您的 z-index 问题。
Greetz,
XpertEase
z-index only works with
position:absolute
,position:relative
orposition:fixed.
Add one of those to your elements will fix your z-index problem.
Greetz,
XpertEase
将
position:relative
添加到#slider-frame
中;我想就这么简单。 此处演示。PS:我在小提琴中看不到 sliderframe.png 。你能更新一下吗?
Add
position: relative
to#slider-frame
; I guess its that simple. Demo here.PS: I cannot see sliderframe.png in the fiddle. Can you update it?