background-attachment

Previous- background-repeat  |  Next-background-position

Description

If a background image is specified, this property specifies whether it is fixed with regard to the viewport ('fixed') or scrolls along with the document ('scroll').

Even if the image is fixed, it is still only visible when it is in the background or padding area of the element. Thus, unless the image is tiled ('background-repeat: repeat'), it may be invisible.


Initial Value : scroll

Applies to : all elements

Inherited : no

Possible Values
scroll | fixed | inherit

Example(s)
body {   background: red url("pendant.gif");  background-repeat: repeat-y;  background-attachment: fixed;}

Previous- background-repeat  |  Next-background-position