0

我的背景有一些问题,只是没有在 android 手机屏幕上正确加载。在苹果上运行良好。我用于背景的样式是:

body
{

 background: url('images/MobileBack.png') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

您还可以在以下网址查看该网站:www.bingetech.com

4

1 回答 1

0

我认为这可能是因为您没有在视口元标记中定义比例。

尝试:

<meta name="viewport" content="initial-scale=1.0" />

[编辑] 也有最大比例

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

我要补充的另一件事是

CSS

html, body {
    min-height: 100%;
}
于 2013-06-01T18:07:28.843 回答