CSS 2.1 参考手册/background

来自Blueidea
跳转至: 导航搜索

定义

background属性是设置background-color, background-image, background-repeat, background-attachmentbackground-position的缩写。

案例

body {background: white url('/images/sun.gif') repeat fixed top center}

上面的例子等价于:

body {
background-color: white;
background-image: url('/images/sun.gif');
background-repeat: repeat;
background-attachment: fixed;
background-position: top center;
}

特性

可能的值

默认值

详见background-color, background-image, background-repeat, background-attachmentbackground-position的属性值。

适用于

所有元素。

继承

没有。

另见