CSS background-attachment属性
-
-
浏览器支持
表中的数字指定了完全支持该属性的第一个浏览器版本。数字后跟-ms-, -webkit-,-moz-或-o-指定使用前缀的第一个版本。属性 Internet Explorer Chrome FireFox Safari Opera 属性名称 background-attachment 4.0 1.01.01.03.5注意: Internet Explorer 8及更早版本不支持在一个元素上使用多个背景图像。 -
CSS语法
background-attachment: scroll|fixed|local|initial|inherit; -
实例
不与页面一起滚动的背景图像(已修复):body { background-image: url("img_tree.gif"); background-repeat: no-repeat; background-attachment: fixed; }
-
属性值
属性值 描述 scroll 背景图像将随页面滚动。 这是默认的 fixed 背景图像不会随页面滚动 local 背景图像将与元素的内容一起滚动 initial 将此属性设置为其默认值。查看initial关键字 inherit 从其父元素继承此属性。查看inherit关键字 -