Z 索引或层顺序

发布于 2025-01-05 12:22:19 字数 210 浏览 0 评论 0原文

我正在这个这个网站工作

,除了狗之外,大部分都很好。 “宠物友好产品” 正如您所看到的,他坐在图形下方,围栏上。所以颜色重叠就结束了。理想情况下,我需要狗坐在该层之上。

关于如何实现这一目标有什么建议吗?

提前致谢。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

落日海湾 2025-01-12 12:22:19

将以下属性添加到狗中:

position: relative;

仅定位元素遵守 z-index 规则(如果未定义 z-index,则层顺序由页面中元素的实际顺序定义)。

Add the following property to the dog:

position: relative;

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).

忘年祭陌 2025-01-12 12:22:19

更改图像中类的 css
通过

.petfriendly{
    float: right;
    left: 834px;
    margin-right: 20px;
    margin-top: -130px;
    position: absolute;
}

定位图像,它将被定位在顶部。

change your css for the class in image
to

.petfriendly{
    float: right;
    left: 834px;
    margin-right: 20px;
    margin-top: -130px;
    position: absolute;
}

by positioning the image it will be positioned on top.

自由如风 2025-01-12 12:22:19

您需要将 position 设置为与 static(默认值)不同,才能使 z-index 正常工作。

试试这个:

.petfriendly {
  float: right;
  margin-right: 20px;
  margin-top: -130px;
  position: relative; // added
}

You need to set position different from static (default value) to make the z-index work.

Try this:

.petfriendly {
  float: right;
  margin-right: 20px;
  margin-top: -130px;
  position: relative; // added
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文