css背景
backround-attachment,背景图像是否固定或者随着页面的其余部分滚动,默认值为scroll。
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>css背景</title> <style> body{ background-image: url("beauty.jpg"); 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> <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>