html z-index 中的图像标签可以位于 css 背景图像后面吗?

发布于 2024-11-07 17:04:09 字数 135 浏览 0 评论 0原文

我想在 img 标签前面放置一个 css 背景图像。 css 背景图像的 z 索引为 1,img 标签的 z 索引为 0。我是否可以将 img 标签放在带有 z 索引的 css 背景后面,或者 css 背景始终位于img 标签不管它的 z-index 吗?

I have a css background image that I want in front of my img tag. The css background image has a z-index of 1, and the img tag has a z-index of 0. Am I allowed to put an img tag behind the css background with the z-index or will a css background always be behind an img tag regardless of it's z-index?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

仄言 2024-11-14 17:04:09

当然,具有 background-image 和较高 z-index 的 HTML 元素可以覆盖任何其他 HTML 元素,在您的情况下是一个简单的 ; 标签。但是 标签不必嵌套在保存背景图像的标签内。

这不会起作用

<img src="../image.jpg" />
<div style="background: url(../image2.gif); z-index: 1">Content</div>

<div style="background: url(../image2.gif); z-index: 1">
    <img src="../imag.jpg" />
</div>

Sure, a HTML element with a background-image and a higher z-index can overlay any other HTML element, in your case a simple <img /> tag. But the <img> tag has not to be nested within the tag holding the background image.

This will work

<img src="../image.jpg" />
<div style="background: url(../image2.gif); z-index: 1">Content</div>

this not:

<div style="background: url(../image2.gif); z-index: 1">
    <img src="../imag.jpg" />
</div>
只有影子陪我不离不弃 2024-11-14 17:04:09

如果您将位置设置为相对或绝对,它就会起作用。请务必设置它,因为它可能会被继承。

It works if you set position to either relative or absolute. Be sure to set it as it may just be inherited.

╰◇生如夏花灿烂 2024-11-14 17:04:09

使用 2 个带有背景图像或 div 的 div,并设置每个 div/图像的 z-index

use 2 divs with a background image or the divs and set each div / image the z-index

红焚 2024-11-14 17:04:09

如果您可以显示一些代码来理解您想要做什么,那将会很有用。
如果您只想在另一个图像前面显示一个图像,请使用 2 个容器,例如 Div 或 Span。

<div id="image1">
    <span id="image2"></span>
</div>

Would be useful if you could show some code to understand what you want to do.
If you only want to display an image in front of another, use 2 Containers like Div, or Span..

<div id="image1">
    <span id="image2"></span>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文