图像定位在 div 之外
我已将图像的顶部相对于包含该图像的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
#imageup
上:position:relative
更改为position:absolute
。top: -200px
更改为top: 100px
。On
#imageup
:position: relative
toposition: absolute
.top: -200px
totop: 100px
.