使用CSS滚动时保持背景图像固定

这对我来说会相当愚蠢,但是如何在页面滚动过程中保持背景图像的固定。 我有这个CSS代码,图像是身体的背景,而不是<div></div>

  body{ background-position:center; background-image:url(..http://img.dovov.comimages5.jpg); } 

谢谢Jean

 background-image: url("/your-dir/your_image.jpg"); min-height: 100%; background-repeat: no-repeat; background-attachment: fixed; background-position: center; background-size: cover;} 

只需添加背景附件到您的代码

 body { background-position: center; background-image: url(..http://img.dovov.comimages5.jpg); background-attachment: fixed; }