CSS实现背景图片固定

body { 
background-image:url('bg.jpg'); 
background-repeat: no-repeat; 
background-attachment: fixed; //这个属性必须与 background-image 一起使用

原文地址:https://www.cnblogs.com/linsx/p/7221836.html