■壁紙素材の使い方

Home

<STYLE type="text/css">
<!--
body {
background-color:#ffffff;
background-image:url(素材画像のURL);
background-repeat:repeat-y;
background-attachment:fixed;
}
--></STYLE>

囲み内に示されたスタイルシートを<HEAD>〜</HEAD>の間に入れます。

background-color:#ffffff;
この例ではページ全体の背景色を白(#ffffff)を指定してあります。
カラーコードによって適当な背景色を指定することができます。

background-repeat: repeat-y;
この一行によってページの左端に背景画像が並んで表示されます。

background-attachment:fixed;
この一行によってページをスクロールしても背景全体は固定されたままになります。
背景を固定しないときはこの行はいりません。

画像を右端に並べて表示したい場合は、
background-repeat: repeat-y; のあとに
background-position:right top; を加えます。

<STYLE type="text/css">
<!--
body {
background-color:#ffffff;
background-image:url(素材画像のURL);
background-repeat:repeat-y;
background-attachment:fixed;
background-position:right top; 
}
--></STYLE>