目录

CSS 背景附加


CSS 背景附加

这个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 背景附加属性

Property Description
background-attachment Sets whether a background image is fixed or scrolls with the rest of the page