0

可能重复:
修复了 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;
}

有什么建议可以解决这个问题吗?

4

1 回答 1

2

1) 总是建议在 iPhone 中使用 PNG

2)检查图像名称,区分大小写

3)尝试在PX中给出宽度和高度,然后检查

让我知道是否仍然无法工作

于 2012-09-20T08:11:02.483 回答