/* background shorthand css */
background: blue url(image.jpg) no-repeat scroll 0px 0px;
/* background longhand css */
background-color: blue;
background-image: url(image.jpg);
background-repeat: no-repeat;
background-attachment: scroll;
background-position: 0px 0px;