background 中有几个属性值,分别是什么

2024-12-24 22:43:04
推荐回答(2个)
回答1:

background : background-color || background-image || background-repeat || background-attachment || background-position

示例:
div { background: red no-repeat scroll 5% 60%; }
body { background: url("images/aardvark.gif") repeat-y; }
pre { background: url("images/aardvark.gif") top; }
caption { background: fuchsia; }

回答2:

background-color 规定要使用的背景颜色。
background-image 规定要使用的背景图像。
background-repeat 规定如何重复背景图像。
background-attachment 规定背景图像是否固定或者随着页面的其余部分滚动。
background-position 规定背景图像的位置。