Reputation: 22030
How do I keep the background image fixed during a page scroll? I have this CSS code, and the image is a background of the body and not <div></div>
body {
background-position:center;
background-image:url(../images/images5.jpg);
}
Upvotes: 72
Views: 164072
Reputation: 19
Just add background-attachment to your code
body {
background-position: center;
background-image: url(../images/images5.jpg);
background-attachment: fixed;
}
Upvotes: 1
Reputation: 317
background-image: url("/your-dir/your_image.jpg");
min-height: 100%;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
background-size: cover;}
Upvotes: 20
Reputation: 943108
background-attachment: fixed;
http://www.w3.org/TR/CSS21/colors.html#background-properties
Upvotes: 151