Android浏览器背景大小:封面;问题

时间:2015-07-27 12:50:15

标签: android html css background-image

我知道已经发布了有关此问题的问题,但我之所以更新主题只是因为没有一个答案对我有用。 所以问题是background-size: cover似乎没有在Android原生浏览器和chrome android浏览器中工作,开头的图像在整个屏幕上显示得像全屏,但是当你滚动时,背景保持不动,并没有沿着屏幕移动。

我用于background-size: cover

的代码
html, body {
    height: 100%;
    min-height: 100%;
}
body.gallery{
    background: url(../img/bg-gallery.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

视觉问题 the visualization showing background-size:cover; issue on android browsers

0 个答案:

没有答案