background
基本特性
初始值: 无(not defined for shorthand properties) 适用于: 所有元素
继承性: 百分比: 根据'background-position'属性
媒体: visual 版本: CSS1
兼容性: IE4+ NS4+
基本语法
background : background-color || background-image || background-repeat || background-attachment || background-position
语法取值
该属性是复合属性。请参阅各参数对应的属性。 默认值为:transparent none repeat scroll 0% 0%。
使用说明
设置对象的背景样式。 如使用该复合属性定义其单个参数,则其他参数的默认值将无条件覆盖各自对应的单个属性设置。 例如:设置 background : white 等于设置 background : white none repeat scroll 0% 0% 。如果在此之前设置了 background-image 属性,则其设置将被 background-image 的默认值 none 覆盖。 背景样式属性的作用区域为对象的内容区域与内补丁( padding )区域。不包括边框( border )与外补丁( margin )区域。尽管该属性不可继承,但如果未指定,其父对象的背景颜色和背景图将在对象下面显示。 对应的脚本特性为 background 。
代码示例