标签: css
是否可以一次性为身体使用背景和背景颜色?
body { background-color: #AAA; background: url(../images/foto.jpg) no-repeat bottom right; }
背景颜色仅在我删除背景时才有效。
答案 0 :(得分:5)
是的,这是一个例子:
body { background: #aaa url(../images/foto.jpg) no-repeat bottom right; }