css background scroll code example
Example 1: html static background
body {
background-image: url("img_tree.gif");
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
Example 2: css background image follow scroll
background-attachment: scroll;
background-attachment: fixed;
background-attachment: local;