background image fixed position css code example
Example 1: how to make fixed background image in css
body {
background-image: url("img_tree.gif");
background-repeat: no-repeat;
background-attachment: fixed;
}
Example 2: css align backround image to the right
.right-align-background {
background-position: center right;
}
Example 3: background position in html
background-position: right top;