howt o stop image repeat and fill it code example
Example 1: how to stop an image repeating in css
body {
background-image: url("image.jpg");
background-repeat: no-repeat;
}
Example 2: fill and no repeat background image css
/* with CSS 3 */
#yourdiv {
background: url('bgimage.jpg') no-repeat;
background-size: 100%;
}