CSS 背景附著
- 上一頁 CSS 背景重復
- 下一頁 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; }
- 上一頁 CSS 背景重復
- 下一頁 CSS 簡寫背景屬性