2017-09-15 149 views

回答

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; 
} 
+0

当我把这个里面我的媒体查询时,背景图像的位置受到干扰。 –

+0

,它仍然在滚动ios mobile –

+0

您的媒体查询似乎不包含'background-attachment:fixed'。这对于防止滚动非常重要。 –