gpt4 book ai didi

CSS 背景图片 svg

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

我正在尝试使用 svg 图像作为 CSS 中的背景图像。图像仅在较大的设备中重新缩放,在宽度和高度小于 svg 图像大小的设备中保持不变。

这是我的代码:

body {
background-image: url(svgImg.svg);
background-repeat: no-repeat;
background-size: cover;
}

你能帮我在每个屏幕上重新调整图像尺寸吗?

最佳答案

这段代码让它做到了,它可以写在一行中,但我发布了每一个细节以便于解释。

body{
background-image: url(svgImg.svg) ;
background-position: center center;
background-attachment: fixed;
background-repeat: no-repeat;
background-color:#464646;
background-size: cover; }

关于CSS 背景图片 svg,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27950912/

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