<head>〜<head>の間に以下の事を記入したら、
背景が固定出来ます。
※画像は縮小しています。画像の上にカーソルをおいた時のサイズが、実際のサイズです。
<style type="text/css">
body{
background-image:url(イメージURL);
background-repeat:no-repeat;
background-position:left top;
background-attachment:fixed;
}
</style>
<style type="text/css">
body{
background-image:url(イメージURL);
background-repeat:no-repeat;
background-position:right top;
background-attachment:fixed;
}
</style>
<style type="text/css">
body{
background-image:url(イメージURL);
background-repeat:no-repeat;
background-position:left bottom;
background-attachment:fixed;
}
</style>
<style type="text/css">
body{
background-image:url(イメージURL);
background-repeat:no-repeat;
background-position:right bottom;
background-attachment:fixed;
}
</style>