The background-repeat property specifies how a background image is repeated.
div {
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 |
Example