Css 全屏背景图像

Css 全屏背景图像,css,image,fullscreen,Css,Image,Fullscreen,我使用此代码在桌面上全屏显示图像 <style> body{ background: url("under-constraction1.jpg")no-repeat fixed 0 0 / cover ; } </style> 身体{ 背景:url(“under-construction1.jpg”)无重复固定0/封面; } 但在Firefox浏览器中的手机中,会显示我的一部分图像 如何修复它?使用此 body{ background:

我使用此代码在桌面上全屏显示图像

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

身体{
背景:url(“under-construction1.jpg”)无重复固定0/封面;
}
但在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;
 }
用这个

 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;
 }

在桌面上正常,但在firefox移动浏览器中,我的所有图像均未显示NHI,它是否在其他移动浏览器(如chrome)上工作,而不是在firefox移动浏览器上?可能是版本问题检查或在桌面上检查正常,但在firefox移动浏览器中,我的所有图像均未显示NHI,除了Firefox手机浏览器外,它还能在其他手机浏览器如chrome上使用吗?可能是版本问题检查还是检查