背景图像在IOS Mobile中滚动

时间:2017-09-15 20:24:21

标签: css css3

我有这个网站。我也希望在IOS Mobile中有静态背景。

  

http://www.mattvella.com/staging/reviews.php

背景图片是静态的,并且在所有情况下都已修复但在IOS Mobile中滚动。我甚至没有ios所以我不知道这是什么情况。我尝试了很多解决方案,但似乎没有一个适合我。

非常感谢任何帮助。感谢。

1 个答案:

答案 0 :(得分:0)

你的CSS样式中有一些错误,可能会产生一些影响。尝试将body样式更新为:

body {
    background-image: url(../media/images/mv-background.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
    overflow-y: auto;
    overflow-x: hidden;
    font-family: Columbia;
}

在媒体查询中,尝试更新您的样式以包含:

body {
    /* other properties here */
    background-attachment: fixed;
}