解决办法:
1、图片不够大,又background属性不能拉伸图片;
2、只能用个div,把其z-index值设为负,并使这个div大小为整个body大小,在div里用<img> ;
3、body的background属性去掉,要不然会被遮住。
<html>
<head>
<title>新年快乐</title>
<embed src="./1.mp3" autostart="true" loop="true" hidden="true"> <!这里不能用bgsound,因为这个标签支持者IE浏览器>
</head>
<body>
<div id="Layer1" style="position:absolute; left:0px; top:0px; width:100%; height:100%">
<img src="./2.gif" width="100%" height="100%"/>
</div>
<font size="6" color="pink" style='position:absolute;left:600;top:400' ><marquee>祝福所有的朋友家庭幸福,事业有成</marquee></font>
<font size="6" color="red" style='position:absolute;left:600;top:500' ><marquee>我在这里给大家拜年了</marquee></font>
</body>
</html>
如果想让图片不随浏览器右边滚动条滚动,就用position:fixed属性。wordpress建站的达人们也可以用此方法,在指定页面定制自己的背景图片。