背景图片在iOS上未全屏显示

bwitn5fc  于 2022-12-24  发布在  iOS
关注(0)|答案(1)|浏览(144)

我想让我的背景图片填满整个屏幕,但我找不到解决方案。如果有人能给予我一个适用于所有移动的设备的解决方案,那就太酷了。
这是我的屏幕现在的样子:

我尝试了很多方法。下面是我当前的代码:

html {
    background: url('/path/to/img') no-repeat center center fixed !important;
    background-size: cover !important;
    height: 100%;
   
}
vuktfyat

vuktfyat1#

试试看:

html { background-image: ... 
    no-repeat;
    background-size: cover;
    width: 100%; }

相关问题