The background-repeat CSS property specifies whether the background-image is repeated or tiled after it has been sized and positioned, and how. It is often more convenient to use the shorthand background property.
Example of Code
<style type="text/css">
#example-CSS-Background-Repeat-div{
background-image: url("http://schools.inimisttech.com/upload/blogs/15501493511549346156product.png");
background-repeat: repeat;
}
</style>
<div id="example-CSS-Background-Repeat-div">
<p>This is a paragraph</p>
</div>
Output
This is a paragraph
