CSS 背景圖定位
CSS background-attachment
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 | 設定背景圖片是固定還是隨頁面其餘部分滾動 |
影片:CSS 背景圖定位

