可能重复:
修复了 iPhone Safari 上的背景
这很奇怪。背景确实会出现在桌面和 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;
}
有什么建议可以解决这个问题吗?