gpt4 book ai didi

javascript - 如何强制图像背景适合较小的 div 中心

转载 作者:行者123 更新时间:2023-11-29 19:44:33 25 4
gpt4 key购买 nike

<div id="img-frame">
<img src="mypathimg.png"/>
</div>

使用 img 100% 会起作用,但它与 Facebook 不同,它缩小但显示图像的中心。

最佳答案

由于其他答案都不完整,因此将标记更改为:

<div id="img-frame">
<div style="background-image:url(yoururl.png)" class="img"></div>
</div>

现在添加 CSS:

.img-frame > .img {
background-size:cover; /* Scale to fit optimistically */
background-position:center; /* Scale from center */
width:100%; /* Same width as parent */
height:100%; /* Same height as parent */
}

关于javascript - 如何强制图像背景适合较小的 div 中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20694787/

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