2017-09-15 103 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'。這對於防止滾動非常重要。 –