基本代码如下:
CODE:参数说明:
<STYLE><!--
body {
background-image : url("love.gif");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center ;}
-->
</STYLE>
background-image : url("love.gif"); 指背景图片的地址,最好是绝对地址.相对地址在有些版本较低的浏览器下显示不了.
background-repeat: no-repeat; 背景图是否重复;no-repeat为不重复;repeat为重复;repeat-y为竖向重复;repeat-x为横向重复.
background-attachment: fixed; 背景是否固定,也就是说背景是否随着滚动条滚动.如果不设默认为随着滚动条滚动,fixed则为不随着滚动条滚动
background-position: center ; 背景所在页面位置设置.center:中 right top:右上角 left top:左上角 right bottom:右下角 left bottom:左下角,
