CSS Background Properties
Reference linking to the Background Properties of CSS, and their useful Example.
These are the CSS specifications, used specifically to specify the background of element. You can use them to control whether a background should repeat, have a fixed attachment, and even its position.
The shorthand version is listed at the top, and allows you to easily enter all the declarations, its recommended that you use this whenever possible.
Below sets all the background properties of a div element, in a single declaration.
The CSS background properties
A short example
#Basement {
background: #ffffff url("MyBackground.png") fixed no-repeat top left;
}