语法:
background-repeat : repeat | no-repeat | repeat-x | repeat-y
参数:
说明:
设置或检索对象的背景图像是否及如何铺排。必须先指定对象的背景图像。
对应的脚本特性为 backgroundRepeat
。
示例:
- menu { background: url("images/aardvark.gif"); background-repeat: repeat-y; }
- p { background: url("images/aardvark.gif"); background-repeat: no-repeat; }