0

我正在做一个项目,无论设备-浏览器-窗口大小如何,我都必须将图像制作为完全合适的背景,经过数小时和数小时的网络研究,这是我得到的最佳 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;

但仍然无法正常工作

任何帮助将不胜感激,谢谢。

4

1 回答 1

0

我没有在 android 设备上玩太多 CSS 处理,有一个 CSS 标记是background-position. 据我所知,您没有在上面的代码中使用它。这是关于背景标签的 W3 学校信息的链接。

W3schools.com 上的 CSS 背景属性

于 2013-04-26T05:20:49.933 回答