back

Background-Repeat

The background-repeat property is used to specify if and how a background image repeats.

If it’s not used it defaults to :repeat;, this repeats the image to fill the entire element.
Other options are :repeat-x; and :repeat-y;, these set repeat to horizontally only or vertically only.
:no-repeat; means that the image is not repeated and is only shown once.

Example