Specifies if and how the background image repeats. By default background images tile from left to right and top to bottom, filling the entire elements background.
background-repeat: no-repeat;
IE5.5+, FF1+, SA1.3+, OP9.2+
| inherit | The property uses the same value as the same property of the parent element. |
| no-repeat | Displays the image only once. |
| repeat | Default value, tiles the image. |
| repeat-x | Repeats the image from left to right. |
| repeat-y | Repeats the image from top to bottom. |