我可以在
上添加图像吗不添加任何html标签?

发布于 2024-11-30 12:50:20 字数 380 浏览 0 评论 0原文

可以说我们有

<div class="picture"><img class="picture_thumb" src="path" /> </div>

,我想使用 CSS 将图像 z-index 添加到 .picture 更高的位置(它基本上是一个放大镜图标,所以我可以在.picture_thumb 的顶部)

有机会吗?

非常感谢

PD:它就像不是背景,而是前景 -编辑- 一张图让你更容易理解 在此处输入图像描述

lets say we have

<div class="picture"><img class="picture_thumb" src="path" /> </div>

And i'd like to use CSS to add an image z-index higher to .picture (it's basically an magnifying glass Icon so I can see it on top of .picture_thumb)

Any chance?

Thanks a lot

PD: it would be like instead of a background, a Front-ground
-EDIT-
An image so you can understand better
enter image description here

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

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

发布评论

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

评论(1

叹倦 2024-12-07 12:50:20

没有所谓的前台。

你必须这样做:

<div class="picture">
  <img src="images/picture.jpg" alt="Picture" />
  <img class="magnifier" src="images/magnifier.jpg" alt="Maginfy" />
</div>

.picture {
  position: relative;
  width: 100px;
  height: 100px;
}

.magnifier {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 1000;
}

如果你不想将放大镜图像添加到每个图片 div 中,你也可以使用 javascript 来完成。

There's no such thing as front-ground.

You'd have to do something like this:

<div class="picture">
  <img src="images/picture.jpg" alt="Picture" />
  <img class="magnifier" src="images/magnifier.jpg" alt="Maginfy" />
</div>

.picture {
  position: relative;
  width: 100px;
  height: 100px;
}

.magnifier {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 1000;
}

You could also do it with javascript if you didn't want to add the magnifier image to each picture div.

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