怎么让背景图片不跟随着滚动条向下滚动?
<style type="text/css">
<!--
body {
background-attachment: fixed;
background-image: url(#ImgUrl#);
background-repeat: no-repeat;
}
-->
</style>
------------
把#ImgUrl#替换成你的图片地址就OK了
<style type="text/css">
<!--
body {
background-attachment: fixed;
background-image: url(#ImgUrl#);
background-repeat: no-repeat;
}
-->
</style>
------------
把#ImgUrl#替换成你的图片地址就OK了