CSS3多个背景无法正常工作

时间:2012-03-13 09:33:16

标签: css css3 background-image

我正在尝试使用CSS3创建一个具有两个背景的简单div。我已经创建了一个JS小提琴,其中有一个我想在这里做的例子:http://jsfiddle.net/nfcyv/

然而,它没有用,我希望有人可以指出为什么或给我一个有用的提示。

以下是CSS的副本:

#box { background:url("http://i.imgur.com/pAmGs.png") no-repeat scroll center bottom #000, url("http://i.imgur.com/fDMpm.png") repeat scroll 0 0 #000;height:500px;width:500px }

1 个答案:

答案 0 :(得分:5)

您只能为最后一个图层指定背景颜色,因此您需要从声明中删除第一个#000

#box {
    background:url("http://i.imgur.com/pAmGs.png") no-repeat scroll center bottom, 
               url("http://i.imgur.com/fDMpm.png") repeat scroll 0 0 #000;
    height:500px;
    width:500px
}

Updated fiddle