background-repeat
If a background-image
property is specified, the background-repeat
property in CSS defines if (and how) it will repeat. Here’s an example:
html {
background-image: url(logo.png);
background-repeat: repeat-x;
}
These are the possible values for this property (besides the usual stuff …