CSS 背景附件
CSS background-attachment
The background-attachment
属性指定背景图像是否应该滚动或固定(不会随着页面其他部分滚动)
示例
指定背景图像应固定
body {
background-image: url("img_tree.png");
background-repeat: no-repeat;
background-position: right top;
background-attachment: fixed;
}
亲自试一试 »
示例
指定背景图像应随着页面其他部分滚动
body {
background-image: url("img_tree.png");
background-repeat: no-repeat;
background-position: right top;
background-attachment: scroll;
}
亲自试一试 »
CSS 背景附件属性
属性 | 描述 |
---|---|
background-attachment | 设置背景图像是否固定或随着页面其他部分滚动 |