CSS 背景附著

CSS background-attachment

background-attachment 屬性指定背景圖像是應該滾動還是固定的(不會隨頁面的其余部分一起滾動):

實例

指定應該固定背景圖像:

body {
  background-image: url("tree.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-attachment: fixed;
}

親自試一試

實例

指定背景圖像應隨頁面的其余部分一起滾動:

body {
  background-image: url("tree.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-attachment: scroll;
}

親自試一試