gpt4 book ai didi

css - 全屏背景图片

转载 作者:太空宇宙 更新时间:2023-11-04 09:50:48 25 4
gpt4 key购买 nike

我使用这段代码在我的桌面上全屏显示图像

<style>
body{
background: url("under-constraction1.jpg")no-repeat fixed 0 0 / cover ;
}
</style>

但在 Firefox 浏览器的移动设备中显示了我的图像

我该如何解决?

最佳答案

使用这个

 body{     
background: url("under-constraction1.jpg") no-repeat center center fixed
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

关于css - 全屏背景图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39114715/

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