css关于网站背景的设置问题?

2025-04-04 12:18:41
推荐回答(4个)
回答1:

楼上写的是背景图像铺排方式,跟这个没关系。
应该设置一下背景图片的background-attachment属性
1.说明:

设置或检索背景图像是随对象内容滚动还是固定的。
对应的脚本特性为backgroundAttachment。

2.语法:

background-attachment : scroll | fixed

3.参数:

scroll : 背景图像是随对象内容滚动
fixed : 背景图像固定

4.示例:

html { background-image: url("anasazi.tif"); background-attachment: fixed; }

楼主自己试——

回答2:

body { background: url("图片地址") repeat-y; } 定义下就好了

回答3:

楼上正解 用这个就可以background-attachment : fixed

回答4:

sdns