background-repeat
Name: background-repeat
Description: Used to determine if the image specificed in the background-image
property is repeated on the page.
Browser Compatibility: IE 4+ / NN 4+
Inherited: No
Values:
- inherit
- no-repeat
- repeat [Initial value]
- repeat-x
- repeat-y
Code Example:
body {
background-image: url(/img/graphic.jpg);
background-repeat: no-repeat;
background-position: 30% 80%;
}
background-image: url(/img/graphic.jpg);
background-repeat: no-repeat;
background-position: 30% 80%;
}
Comments: Used in conjunction with the background-image
property