CSS属性 - background 背景属性

说明

该CSS属性是一个复合属性,是5个背景属性 background-color, background-image, background-repeat, background-attachment 和 background-position 的综合快捷写法。背景所涉及的是 content 和 padding 区域,请参见 CSS 盒子模式 (Box Model)

值:[<'background-color'> || <'background-image'> || <'background-repeat'> || <'background-attachment'> || <'background-position'>] | inherit

可用值值的说明
colorbackground-color 的属性值
imagebackground-image 的属性值
repeatbackground-repeat 的属性值
attachmentbackground-attachment 的属性值
positionbackground-position 的属性值

该CSS属性的缺省值为 transparent none repeat scroll 0% 0%。

示例代码

body {background:#99FF00 url(background.gif) no-repeat fixed 40px 100px}

继承

适用于

所有元素