how to make background repeat css code example
Example 1: how to make image not repeat on background
.image {
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%;
}