background概述:复合属性。设置对象的背景特性。
背景缩写属性可以在一个声明中设置所有背景属性。
可以设置以下属性:background-color、background-position、background-size、background-repeat、background-origin、background-clip、background-attachment 和 background-image。
值以空格分隔,而不是以特定顺序分隔。只能具有这些值的一部分。例如 background:#FF0000 URL(smiley.gif); 是允许的。
background:bg-color bg-image position/bg-size bg-repeat bg-origin bg-clip bg-attachment initial|inherit;
/*为一个div元素设置多个背景图像(并指定它们的位置)*/ body { background: #00ff00 url('smiley.gif') no-repeat fixed center; }