CSS Background-Attachment Property

CSS 1

CSS 2

CSS 3

Yes Yes Yes

Description

Sets the background image to scroll or not to scroll along with its associated element.

Syntax

background-attachment: [value] ;

Possible values

  • scroll
  • fixed
  • inherit

Initial Value

Scroll

Applies To

All elements

Inherited

No

Media

Visual

Example

{background-image: url(img/myimage.gif);
  background-attachment: fixed;}


View All CSS Properties