htmlcss

The background-repeat property is used in CSS and certain HTML elements. It specifies whether the background image is repeated (tiled), and how.


Values


HTML example:

<span style="background-image:url('http://images4.wikia.nocookie.net/__cb20100613222942/htmlcss/images/b/bc/Wiki.png'); background-repeat:repeat-x;">
ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ
</span>


CSS example:

body {
      background-image:url("http://images4.wikia.nocookie.net/__cb20100613222942/htmlcss/images/b/bc/Wiki.png");
      background-repeat:repeat-x;
}