和相应的CSS: #banner { width: 100%; height: 275px; } #banner .background { -6ren">
gpt4 book ai didi

html - 我怎样才能制作背景图片 scalebale

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

我有一个横幅div:

<div class="background" style="background: url(<%= @banner.image.url(:big) %>) no-repeat"></div>

和相应的CSS:

#banner {
width: 100%;
height: 275px;
}

#banner .background {
width: 100%;
height: 275px;
background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-webkit-background-size: cover;
}

uploader .rb:

version :big do
process resize_to_fill: [1920, 280]
end

在较小的设备上,background-image 被裁剪了,下面是屏幕截图。全宽:

enter image description here

和调整大小的窗口:

enter image description here

有没有什么办法可以让图片在屏幕宽度变窄时可以调整大小?谢谢。

最佳答案

为此只需使用background-size: contain

#banner .background {
background-size: contain;
}

关于html - 我怎样才能制作背景图片 scalebale,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43184750/

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