Background Properties

background: <#color#> url('<#/path/image-name.ext#>') <#repeat#> <#attachment#> <#x-position#> <#y-position#>;
The background property is a shorthand for specifying background-color, background-image, background-repeat, background-attachment and background-position, in that order.
background-color: <#color#>;
Use the HTML Color Picker for an easy way to choose HTML colors.
background-image
background-image: url('<#/path/image-name.ext#>');
background-image: none;
background-image: inherit;
background-repeat
background-repeat: repeat;
background-repeat: repeat-x;
background-repeat: repeat-y;
background-repeat: no-repeat;
background-repeat: inherit;
background-attachment
background-attachment: scroll;
background-attachment: fixed;
background-attachment: inherit;
background-position
background-position: <#x-position#> <#y-position#>
background-position: inherit;