这个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;
}
亲自试一试 »
Property | Description |
---|---|
background-attachment | Sets whether a background image is fixed or scrolls with the rest of the page |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!