我正在使用这个简单的代码将整页背景图像调整为我的元素:
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当然会动画到左边,但背景图像不会。
解决此问题的解决方案是什么?