【发布时间】:2020-07-12 18:30:17
【问题描述】:
是否有技巧或解决方法可以使用object-fit:cover 和父级中的绝对定位制作图像,使其表现得像css 中的background-attachment: fixed?
我想要这个:
<section>
<img src="" style="object-fit: cover; position: absolute; width: 100%; height: 100%;"
</section>
具有与此相同的功能:
<section style="background: url(..); background-attachment: fixed;">
<section>
【问题讨论】:
-
也许背景尺寸:封面; ?
-
@shai_sharakanski 我用 html 更新了问题,我在问如何使
img表现得像background-attachment:fixed -
@TemaniAfif 如果有多个这样的部分,它仍然有效吗?这需要弄乱 z-index 吗?