背景

88 阅读1分钟

背景 Background

简写属性 background 包含以下属性

  • background-color
  • background-image
  • background-repeat
  • background-position

可以简写成一行属性,依次为其次级属性赋值

background: #000 url(images/bg.gif) no-repeat top right;

⚠️ 在使用简写属性没有指定其包含的部分次级属性值时,该次级属性会赋予默认值,应注意引起未预期的覆盖行为

/* background-color 默认值为 transparent */
background-color: red;
background: url(images/bg.gif) no-repeat top right;   // 以上样式不会将 `background-color` 设置为 `red`,而是使用默认值 `transparent`,因为第二条规则优先