gpt4 book ai didi

html - 对象适合覆盖在 div 中的图像上

转载 作者:行者123 更新时间:2023-11-28 05:18:30 25 4
gpt4 key购买 nike

现在我在 div 中有一个图像,如下所示:

<section class="col-md-12">

<img src="imagepath/image.jpg"/>

</div>

我可以使用 object-fit:cover;适用于 firefox、chrome 和其他有用的浏览器,但这不适用于 IE。是否有一种变通方法可以使图像看起来与使用 object-fit:cover; 时看起来一样?

附言。我无法使图像成为父级的背景。

最佳答案

用它来html

<div id="bg">
<img src="images/bg.jpg" alt="">
</div>

将其用于 css

#bg {
position: fixed;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
}
#bg img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
min-width: 50%;
min-height: 50%;
}

关于html - 对象适合覆盖在 div 中的图像上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39192095/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com