我想把我的百度空间的模板照片换成自己想要的 不知道怎么弄高手们帮帮忙

来源:百度知道 编辑:UC知道 时间:2024/05/15 08:53:40
就换后面的背景就可以了 不知道在css中怎么改

/*背景设置*/
body{}中加入background:url(http://***.gif) repeat-x
注:
repeat 背景图像在纵向和横向上平铺
no-repeat 背景图像不平铺
repeat-x 背景图像在横向上平铺
repeat-y 背景图像在纵向平铺

/*如何设定+固定百度空间的背景*/
在body{}中加入
background-image:url(图片地址) ; 定义背景图片
background-repeat: no-repeat; 定义背景图片不重复
background-position: center; 定义背景居中
background-attachment: fixed; 定义背景固定,不滚动参数fixed

参考资料:http://hi.baidu.com/0454ldk/blog/item/ac810546e845f0096b63e5c1.html

只要更换body{}里面的地址栏就可以了。。通常地址栏都是被()包住的。。把里面的地址改成自己喜欢的图片地址就可以了~~