gpt4 book ai didi

css - 我的背景图像未正确缩放。我已经将高度更改为 100%,等等

转载 作者:太空宇宙 更新时间:2023-11-03 22:51:05 24 4
gpt4 key购买 nike

我的背景图像不想与页面的其余部分一起缩放。当我让它这样做时,当我缩小页面时,它在它下面创建了一个巨大的空白间隙。

.vintage {
width: 100%;
height: 100vh;
background-image: url(vintagemcdonalds.jpg);
background-repeat: no-repeat;
}

最佳答案

使用background-size:coverbackground-image覆盖整个div。

在此处查看有关此属性的更多信息:CSS3 background-size Property

.vintage { width: 100%;
height: 100vh;
background-image: url(http://placehold.it/350x150);
background-repeat: no-repeat;
background-size:cover;
}
<div class="vintage">

</div>

关于css - 我的背景图像未正确缩放。我已经将高度更改为 100%,等等,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39918647/

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