background-attachment: fixed;
The background-attachment property specifies whether a background image is fixed or scrolls.
div {
width: 70%;
height: 200px;
overflow: scroll;
background-image: url(image/back.gif);
background-attachment: fixed;
}
Property |
Value |
Explanation |
background-attachment |
fixed |
specifies the fixed |
scroll |
specifies the scrolling (default) |
Example