The background-attachment controls how the background scrolls with the page. The following stylesheet would cause the background to not scroll at all.
body { background-image: url("http://www.lynda.com/background.png"); background-repeat: no-repeat; background-attachment: fixed;}Here are all the possible values:
| Property | Value | Notes |
| background-attachment: | scroll | The background scrolls with the document (default) |
| background-attachment: | fixed | The background does not scroll |
| background-attachment: | inherit | inherit parent's attachment |
Note: In CSS, children don't inherit their parent's attachment by default.