background-attachment -- 定义背景图片随滚动轴的移动方式 css
- 取值: scroll | fixed | inherit
- scroll: 随着页面的滚动轴背景图片将移动
- fixed: 随着页面的滚动轴背景图片不会移动
- inherit: 继承
- 引用网址:http://www.dreamdu.com/css/property_background-attachment/
- 初始值: scroll
- 继承性: 否
- 适用于: 全部元素
- background:背景.attachment:附着.
body
{
background-image:url('list-orange.png');
background-attachment:fixed;
background-repeat:repeat-x;
background-position:center center;
}