Keep Background Image Fixed During Scroll Using Css

how to make fixed background image in css
body {
background-image: url("img_tree.gif");
background-repeat: no-repeat;
background-attachment: fixed;
}
Keep background image fixed during scroll using css
background-attachment: fixed;
How to make background fixed while scrolling
On-scroll fixed background

Leave a Comment