how to background url in css code example
Example 1: background css
body {
background: #ffffff url("img_tree.png") no-repeat fixed right top;
}
Example 2: background single line property css
body {
background: #ffffff url("img_tree.png") no-repeat right top;
}