style background code example
Example 1: js background image
document.body.style.backgroundImage = "url('img_tree.png')";
Example 2: document.body.style.background
// Change the background color to red
document.body.style.backgroundColor = "red";
Example 3: background css
body {
background: #ffffff url("img_tree.png") no-repeat fixed right top;
}