Appearance:
background-repeat: <value>
Possible Values:
repeat | repeat-x | repeat-y | no-repeat
Initial Value:
repeat
Applies to:
All elements
Inherited:
No
BODY { background: white url(/images/lbg.jpg); background-repeat: repeat-y }
In the above example, the image will only be tiled vertically on the left of this page.Authors may also use the shorthand background property, which is currently better supported than the background-repeat property.
Example