代码之家  ›  专栏  ›  技术社区  ›  ceth

背景色和背景一次性

css
  •  4
  • ceth  · 技术社区  · 14 年前

    是否可以同时为正文使用背景色和背景色?

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

    背景色仅在删除背景时才起作用。

    1 回复  |  直到 12 年前
        1
  •  5
  •   Joey Gumbo    14 年前

    是的,下面是一个例子:

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