html z-index 中的图像标签可以位于 css 背景图像后面吗?
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
当然,具有
background-image
和较高z-index
的 HTML 元素可以覆盖任何其他 HTML 元素,在您的情况下是一个简单的;
标签。但是标签不必嵌套在保存背景图像的标签内。
这不会起作用
:
Sure, a HTML element with a
background-image
and a higherz-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
this not:
如果您将位置设置为相对或绝对,它就会起作用。请务必设置它,因为它可能会被继承。
It works if you set position to either relative or absolute. Be sure to set it as it may just be inherited.
使用 2 个带有背景图像或 div 的 div,并设置每个 div/图像的 z-index
use 2 divs with a background image or the divs and set each div / image the z-index
如果您可以显示一些代码来理解您想要做什么,那将会很有用。
如果您只想在另一个图像前面显示一个图像,请使用 2 个容器,例如 Div 或 Span。
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..