2012-09-20 115 views
0

可能重複:
Fixed background on iPhone Safari身體的背景位置固定在iPhone上沒有顯示

這是非常奇怪的。背景確實顯示在桌面和Android手機上,但不會顯示在iPhone上。

HTML:

<body class="customer-account-login"> 

CSS:

.customer-account-login { 
    background: url(../images/join-bg.jpg) no-repeat center center fixed; 
    position: fixed; 
    margin: 0; 
    padding: 0; 
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0; 
    z-index: -10; 
    list-style: none; 
    -webkit-background-size: cover; 
    -moz-background-size: cover; 
    -o-background-size: cover; 
    background-size: cover; 
} 

任何建議,以解決這一問題?

+0

嘗試添加如逗號'background:url('../ images/join-bg.jpg')'並檢查您的'路徑'。 –

回答

2

1)它總是建議使用PNG圖像在iPhone

2)檢查圖像的名字,它的區分大小寫

3)儘量使寬度和高度PX,然後檢查

讓我知道如果仍然不工作