我正在使用这个简单的代码将整页背景图像调整为我的元素:
background: url(images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
一切都很好,但现在我有一个问题,例如在 Firefox V30 中,如果页面从右侧显示一个非画布面板,背景图像不会向左移动。包含背景图像的 div 当然会向左动画,但背景图像不会。
有什么解决方案可以解决这个问题?