background-repeat
Definition
The background-repeat property specifies if an mage is repeated (tiled), and, if so, how.
Example
body {background: white url('/images/sun.gif');background-repeat: repeat-y;background-position: top center;}
The previous example may render in a Web browser like this:

Characteristics
Possible values
repeat- The image is repeated both horizontally and vertically.
repeat-x- The image is repeated horizontally only.
repeat-y- The image is repeated vertically only.
no-repeat- The image is not repeated: only one copy of the image is drawn.
inherit- Use the same computed value as the parent element for this property.
Default value
repeat
Applies to
Inherited
No
See also