background-repeat: ***;
Browser |
|
---|
The background-repeat property specifies how a background image is repeated.
Applying this property to the BODY element applies the specified style to background of an entire page.
body {
background-image: url(image/back.gif);
background-repeat: repeat-y;
}
Property | Value | Explanation |
---|---|---|
background-repeat | repeat | the image is repeated both horizontally and vertically (default) |
repeat-x | the image is only repeated horizontally | |
repeat-y | the image is only repeated vertically | |
no-repeat | the image is displayed only once |