背景css图像不会在firefox中显示

时间:2014-11-23 19:14:28

标签: html css firefox background-image

http://nategines.com/Beta/HTML/work2.html

我在网上购买了这个模板,并在其中添加了单独的背景图像css图像。我的想法是我想要两个重叠的背景图像。

页面在chrome和Safari中显示正常,但在firefox中,附加到的背景图像不显示,图像附加到显示,但忽略y位置。

任何人都可以帮助我了解正在发生的事情吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

首先background-position-y在Firefox中不起作用,因为它应该是

所以它应该是

background-position: center 35px;

body{
background: url('../../images/eraser.svg') no-repeat scroll center;
background-size: auto 350px;
background-position: center 35px;
}