html background image repeat left code example
Example 1: how to stop an image repeating in css
body {
background-image: url("image.jpg");
background-repeat: no-repeat;
}
Example 2: move css background image
background-image: url('w3css.gif');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;