楼上写的是背景图像铺排方式,跟这个没关系。
应该设置一下背景图片的background-attachment属性
1.说明:
设置或检索背景图像是随对象内容滚动还是固定的。
对应的脚本特性为backgroundAttachment。
2.语法:
background-attachment : scroll | fixed
3.参数:
scroll : 背景图像是随对象内容滚动
fixed : 背景图像固定
4.示例:
html { background-image: url("anasazi.tif"); background-attachment: fixed; }
楼主自己试——
body { background: url("图片地址") repeat-y; } 定义下就好了
楼上正解 用这个就可以background-attachment : fixed
sdns