gpt4 book ai didi

css - 拉伸(stretch)以适应 CSS 中的背景

转载 作者:行者123 更新时间:2023-11-28 12:41:43 25 4
gpt4 key购买 nike

我正在尝试拉伸(stretch)图像以适应整个背景,到目前为止我已经尝试过这段代码,但它只是垂直重复,这是我不想要的。

body {
margin: 0;
border: 0;
background-image: url(/images/bg.jpg);
background-size: cover;
background-position: center;
}

最佳答案

尝试使用

background-image: url("/images/bg.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
background-size: cover;

可以缩写为

background: url("/images/bg.jpg") no-repeat fixed center;
background-size: cover;

关于css - 拉伸(stretch)以适应 CSS 中的背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26373576/

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