**background-attachment**
* 描述:设置对象的背景图是随对象内容滚动还是固定的
* 版本:CSS1 | CSS3 该属性在 CSS3 有修改
* 继承性:无
**语法**
```
background-attachment: 滚动值;
```
滚动值
* scroll: 默认值。背景图会随着页面其余部分的滚动而移动。
* fixed:背景图相对于窗体固定,当页面的其余部分滚动时,背景图像不会移动。
* inherit:从父元素继承 background-attachment 属性的设置。
* local:背景图像相对于元素内容固定,当元素随元素滚动时背景图像也会跟着滚动。(CSS3)
**使用说明**
要设置背景图是随对象内容滚动还是固定的,必须先指定 background-image 属性。
**代码示例**
设置背景图像对于窗体(视口)是固定的
```
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>background-attachment</title>
<style>
#container{
width: 400px;
height: 400px;
border: 1px solid #ff6600;
background-image: url(../img/01.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
}
#set_height{
height: 1500px;
width: 30px;
border: 10px dotted #336600;
}
</style>
</head>
<body>
<div id="container">
</div>
<div id="set_height">
</div>
</body>
</html>
```
- 空白目录
- CSS3专业名词
- 复合属性
- 继承性
- CSS3背景
- background
- background-color
- background-image
- background-repeat
- background-attachment
- background-position
- background-origin
- background-clip
- background-size
- CSS边框
- border
- border-width
- border-style
- border-color
- border-top
- border-top-width
- border-top-style
- border-top-color
- border-right
- border-right-width
- border-right-style
- border-right-color
- border-bottom
- border-bottom-width
- border-bottom-style
- border-bottom-color
- border-left
- border-left-width
- border-left-style
- border-left-color
- border-radius
- border-top-left-radius
- border-top-right-radius
- border-bottom-right-radius
- border-bottom-left-radius
- CSS颜色
- color
- opacity
- CSS字体
- font
- font-style
- font-variant
- font-weight
- font-size
- font-family
- font-stretch
- font-size-adjust
- CSS定位
- position
- z-index
- clip