gpt4 book ai didi

javascript - 如何使背景图像在 html 中不可调整大小?

转载 作者:搜寻专家 更新时间:2023-10-31 22:47:31 26 4
gpt4 key购买 nike

body {
background: url('../../asset/background.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

这是我的背景图片代码。我希望在调整浏览器大小时图像不能调整大小。

最佳答案

你不应该使用 background-size:cover;。使用该 CSS,您可以告诉浏览器您希望背景图像扩展以覆盖整个背景区域。

如果您希望背景图像居中而不调整大小,只需执行以下操作:

body {
background: url('../../asset/background.jpg') no-repeat center center;
}

您可以任意放置背景,here are more options .

关于javascript - 如何使背景图像在 html 中不可调整大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14076972/

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