我正在做一个项目,无论设备-浏览器-窗口大小如何,我都必须将图像制作为完全合适的背景,经过数小时和数小时的网络研究,这是我得到的最佳 CSS 设置:
background: url(datas/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
那,在所有浏览器和设备上都可以正常工作,并且图像非常适合背景。但是,在 Android 系统上,图像不适合垂直,如您所见,它移到了顶部
在这里。
我也试过这个
background: url(datas/bg.jpg) no-repeat center center fixed;
-webkit-background-size: 100%;
-moz-background-size: 100%;
-o-background-size: 100%;
background-size: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
但仍然无法正常工作
任何帮助将不胜感激,谢谢。