转载 /*如何设定+固定百度空间的背景*/ 在body{}中加入 background-image:url(图片地址) ; 定义背景图片 background-repeat: no-repeat; 定义背景图片不重复 background-position: center; 定义背景居中 background-attachment: fixed; 定义背景固定,不滚动参数fixed /*背景设置*/ body{}中加入background:url() repeat-x #FFFFFF 注: repeat 背景图像在纵向和横向上平铺 no-repeat 背景图像不平铺 repeat-x 背景图像在横向上平铺 repeat-y 背景图像在纵向平铺 =============================================================================== 转载 ◆随文字滚动的背景 在第一行下面添加 body{background: url(_jpg); background-position:0px -200px} url()括号中的内容自己找个图片弄上去吧 其中background-position:0px -200px是定义背景图片位置的,第一个是图片左上角相对前景左边框的位置,第二个是图片左上角相对前景上边框的位置 ◆空间固定背景 把第一行变成 body{background:url(图片地址) no-repeat;background-position: center;background-attachment: fixed;} 找到stage{background:#F3F1F1} 把其中的background:#F3F1F1删除只留下stage{}