<HEAD>と</HEAD>の間にコピーして貼り付けてご利用ください。

背景を固定する
<style type="text/css">
body { background-attachment:fixed;}
</style>

背景を横方向だけ繰り返す
<style type="text/css">
body { background-repeat:repeat-x;}
</style>

背景を縦方向だけ繰り返す
<style type="text/css">
body { background-repeat:repeat-y;}
</style>

背景を固定して横方向だけ繰り返す
<style type="text/css">
body { background-attachment:fixed;
background-repeat:repeat-x;}
</style>

背景を固定して縦方向だけ繰り返す
<style type="text/css">
body { background-attachment:fixed;
background-repeat:repeat-y;}
</style>

背景を左上に固定して繰り返さない
<style type="text/css">
body { background-attachment:fixed;
background-repeat : no-repeat;
background-position : 0% 0%;}
</style>

背景を右上に固定して繰り返さない
<style type="text/css">
body { background-attachment:fixed;
background-repeat : no-repeat;
background-position : 100% 0%;}
</style>

背景を左下に固定して繰り返さない
<style type="text/css">
body { background-attachment:fixed;
background-repeat : no-repeat;
background-position : 0% 100%;}
</style>

背景を右下に固定して繰り返さない
<style type="text/css">
body { background-attachment:fixed;
background-repeat : no-repeat;
background-position : 100% 100%;}
</style>

<style type="text/css">
<!--
table{filter:Alpha(opacity=60);}
-->
</style>