我有一个网站,它有一个完整的图像固定背景,内容“浮动”在上面。它在桌面浏览器中运行良好,但固定的背景最终会在 iPad 和其他平板电脑上滚动。这似乎是一个常见问题,但后来我遇到了这个网站,即使在 iPad 上它似乎也有固定的背景。
http://confitdemo.wordpress.com/
知道他们是如何做到的吗?我试过了:
#content-wrapper.posts-page {
background-attachment: fixed !important;
background-clip: border-box;
background-color: transparent;
background-image: url("image path");
background-origin: padding-box;
background-position: right top;
background-repeat: no-repeat;
background-size: cover;
}
(这是从 Firebug 复制的,这就是它不是速记的原因)。
但没有运气。有人让我指出正确的方向吗?