background-repeat
If a background-image property is specified, the background-repeat property in CSS defines if (and how) it will repeat.
html {
background-image: url(logo.png);
background-repeat: repeat-x;
}
Values
The background-repeat property accepts the following values:
/* Single value syntax */
background-repeat: repeat; …