图像定位在 div 之外

发布于 2024-10-21 00:50:29 字数 349 浏览 3 评论 0原文

我已将图像的顶部相对于包含该图像的 div 设置为 -200px。例如:

问题是 div“one”隐藏了我放在“imageup”上的图像。我尝试在 #imageup 上设置 z-index 但没有成功。这是具体问题:

http://www.ofertasybonos.com/ofertas-automovil

当你看到图像 coches.png 被另一个 div 隐藏,我如何解决这个问题,在 #imageup 或 coches.png 上设置 css 属性

i have set the top of an image to -200px relative to the div that contain that image. for example:

The problem is that the div "one" is hidding me the image that i put on "imageup". I tried setting up z-index on #imageup with no succeed. Heres is the specific problem:

http://www.ofertasybonos.com/ofertas-automovil

As you see the image coches.png is hidden by another div, how i solve this setting a css property on #imageup or on the coches.png

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

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

发布评论

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

评论(1

·深蓝 2024-10-28 00:50:29

#imageup上:

  • position:relative更改为position:absolute
  • top: -200px 更改为 top: 100px
  • 你赢了(演示)

On #imageup:

  • Change position: relative to position: absolute.
  • Change top: -200px to top: 100px.
  • You win (demo).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文