How to specify ...LOGIN

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.


Next Section
<!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
ChapterCourseware