
この素材の使い方
指定の位置に固定して壁紙を表示する方法です。
以下のソースを<head>〜</head>内に入れて下さい。
---------------
<STYLE type="text/css">
<!--
body{
background-attachment:fixed;
background-color:背景色;
background-image:url(ファイル名);
background-repeat:no-repeat;
background-position:0% 0%;}
-->
</style>
-----------------
*8行目
background-position:0% 0%;}
最初の"0%"の数字が大きくなると右に移動します。
2番目の"0%"の数字が大きくなると下に移動します。

|