背景颜色和背景在一次

时间:2010-11-14 10:52:51

标签: css

是否可以一次性为身体使用背景和背景颜色?

body {
    background-color: #AAA;
background: url(../images/foto.jpg) no-repeat bottom right; 
}

背景颜色仅在我删除背景时才有效。

1 个答案:

答案 0 :(得分:5)

是的,这是一个例子:

body {
  background: #aaa
  url(../images/foto.jpg) no-repeat
  bottom right;
}