background repeat code example
Example 1: how to stop an image repeating in css
body {
background-image: url("image.jpg");
background-repeat: no-repeat;
}
Example 2: no repeat background
background-repeat: no-repeat;
Example 3: repeatable background image
body {
background-image: url('Background_image.png');
}