gpt4 book ai didi

html - 无法在 css 中缩放图像

转载 作者:太空宇宙 更新时间:2023-11-04 02:52:26 24 4
gpt4 key购买 nike

我想要一张特定的图片覆盖我网站的整个背景,并且在调整窗口大小时,我希望图片相应地缩放。我要找的是类似 https://www.tumblr.com 的东西.请注意背景中的图片会根据窗口大小进行缩放。

这是我的CSS:

html, body {
height: 100%;
width: 100%;
padding: 0;
margin: 0;
}

#backdrop {
z-index: -999;
min-height: 100%;
min-width: 100%;
width: 100%;
height: auto;
position: fixed;
top: 0;
left: 0;
}

#backdrop 是我正在使用的图像的 ID。

我已经尝试了很多方法,但似乎没有任何改变我图像的显示方式。

最佳答案

使用object-fitimg 表现得像 background-image。请参阅此工作示例:

html, body {
height:100%;
margin:0;
padding:0;
}

img {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
<img src="http://lorempixel.com/g/1100/300">

关于html - 无法在 css 中缩放图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32768812/

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