background shorthand property code example
Example 1: background css property shorthand
background: bg-color bg-image position/bg-size bg-repeat bg-origin bg-clip bg-attachment initial|inherit;
Example 2: background css
body {
background: #ffffff url("img_tree.png") no-repeat fixed right top;
}