CSS background-attachment属性
CSS background-attachment属性控制背景图像是否随元素滚动。它有两个可能的值:scroll和fixed。
scroll属性
当使用scroll属性时,背景图像将随着元素一起滚动。它是默认的background-attachment属性值。
body { background-attachment: scroll; }
fixed属性
当使用fixed属性时,背景图像将固定在元素的位置,而不会随元素一起滚动。
body { background-attachment: fixed; }
浏览器支持
background-attachment属性被所有主流浏览器支持,包括IE7+、Firefox、Chrome、Safari和Opera。
实例
下面的实例将背景图像设置为fixed,以便图像不会随元素一起滚动:
body { background-image: url("bg_flower.gif"); background-attachment:fixed; }