background-colorh1 {
background-color: #ccc;
}h1 { background-color: rgb(204,204,204); }background-imageh1 { background-image: url(../images/texture.jpg); }h2 { background-image: none; }background-repeath1 {
background-repeat: repeat;
}h2 { background-repeat: no-repeat; }background-attachmenth1 { background-attachment: fixed; }background-position h1 { background-position: right bottom; }h2 { background-position: 50% 20%; }For the sake of a short and minimal style sheet - you can, and should in most cases, of course use the shorthand code, combining all required properties into one singe line of code.
backgroundh1 { background: #ccc url(../images/decor.jpg) no-repeat fixed center bottom; }