我使用以下 CSS 来创建固定的正文背景。它适用于几乎所有浏览器,除了新的 iOS7。在后者上,背景不再固定。它随页面滚动。知道如何解决问题吗?
body {
background-color: #000;
background-image: url('../pics/backgrounds/blackWhite.jpg');
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
干杯