how to set a image to fixed in the background in css code example
Example: how to make fixed background image in css
body {
background-image: url("img_tree.gif");
background-repeat: no-repeat;
background-attachment: fixed;
}
body {
background-image: url("img_tree.gif");
background-repeat: no-repeat;
background-attachment: fixed;
}