在百度空间上自己做模板

来源:百度知道 编辑:UC知道 时间:2024/05/21 15:14:29
我想把空间的背景改成一幅固定的图片http://hi.baidu.com/tamlim/modify/preview/cb3195ec6410532762d09f97.css
http://hi.baidu.com/tamlim/modify/preview/ee288831966d04a85edf0e7f.css
像上面两个一样,固定一个模板,文章在上面滚动,请具体说出修改哪里的代码
不行啊

这里有一个图解,一看就懂~
http://hi.baidu.com/jiqiao/blog/item/de91bd3112c73ba85fdf0e3f.html

/*背景设置*/
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