Z 索引或层顺序
我正在这个这个网站工作
,除了狗之外,大部分都很好。 “宠物友好产品” 正如您所看到的,他坐在图形下方,围栏上。所以颜色重叠就结束了。理想情况下,我需要狗坐在该层之上。
关于如何实现这一目标有什么建议吗?
提前致谢。
I am working on this This site
Most of it is in place nicely, apart from the dog. "Pet Friendly Products" As you can see he is sitting below the graphic with the fence on. So the colour overlap is going over. I ideally need the dog to sit above that layer.
Any suggestions on how I can achieve this?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将以下属性添加到狗中:
仅定位元素遵守 z-index 规则(如果未定义 z-index,则层顺序由页面中元素的实际顺序定义)。
Add the following property to the dog:
Only positioned elements abide to z-index rules (If no z-index is defined, the layer order is defined by the actual order of the elements in the page).
更改图像中类的 css
通过
定位图像,它将被定位在顶部。
change your css for the class in image
to
by positioning the image it will be positioned on top.
您需要将
position
设置为与static
(默认值)不同,才能使z-index
正常工作。试试这个:
You need to set
position
different fromstatic
(default value) to make thez-index
work.Try this: