国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

How to specify a fixed background image

Example analysis:

The background-attachment attribute can set whether the background image is fixed or scrolls with the rest of the page.

When the value of the background-attachment attribute is "fixed", the background image is fixed and does not scroll with the rest of the page.


Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> body { background-image:url('https://img.php.cn/upload/article/000/000/024/5c6a4428ea867709.png'); background-repeat:no-repeat; background-attachment:fixed; } </style> </head> <body> <p>背景圖片是固定的,不會隨頁面的其余部分滾動。</p> <p>背景圖片是固定的,不會隨頁面的其余部分滾動。</p> <p>背景圖片是固定的,不會隨頁面的其余部分滾動。</p> <p>背景圖片是固定的,不會隨頁面的其余部分滾動。</p> <p>背景圖片是固定的,不會隨頁面的其余部分滾動。</p> <p>背景圖片是固定的,不會隨頁面的其余部分滾動。</p> <p>背景圖片是固定的,不會隨頁面的其余部分滾動。</p> <p>背景圖片是固定的,不會隨頁面的其余部分滾動。</p> <p>背景圖片是固定的,不會隨頁面的其余部分滾動。</p> <p>背景圖片是固定的,不會隨頁面的其余部分滾動。</p> <p>背景圖片是固定的,不會隨頁面的其余部分滾動。</p> <p>背景圖片是固定的,不會隨頁面的其余部分滾動。</p> <p>背景圖片是固定的,不會隨頁面的其余部分滾動。</p> <p>背景圖片是固定的,不會隨頁面的其余部分滾動。</p> <p>背景圖片是固定的,不會隨頁面的其余部分滾動。</p> <p>背景圖片是固定的,不會隨頁面的其余部分滾動。</p> </body> </html>
submitReset Code