タグ講座と言う割には単なる背景表示のタグのみです。
サポートはしていませんので詳しくはHTMLのサイトなどをお調べください。

●注意と表示の見方●
タグは必ず<HEAD></HEAD>内に入れてください。<> . ; : {}は絶対に消さないで下さい。

●画像イメージ●
ピンクの部分には表示したいURLを(*****.gif)もしくは(http://*****.gif)などを記述してください。

●位置●
水色部分の記述を書き換えれば、右や上などに配置できます。
left...............................左揃え
left top.....................左上
left bottom...........左下
left center.............左中央
right.............................右揃え
right top..................右上
right bottom.........右下
right center
...........右中央

●繰り返し●
黄色部分は繰り返しの記述です。書き換えれば繰り返しの有無を変更できます。

repeat.........................縦横に繰り返し
repeat-x...................横方向のみ
repeat-y...................縦方向のみ
no-repeat................繰り返さない(単独表示)
●固定●

緑色部分は固定の有無の記述です。下記蹴れば固定の有無の変更が出来ます。

scroll..........................背景固定しない(スクロール)
fixed............................背景固定する





背景・左端に並べて表示(スクロール) 背景・左端に並べて表示(固定)
<STYLE type="text/css">
<!--
BODY{
background-image : url(
画像URL);
background-repeat :
repeat-y;
background-attachment :
scroll;background-position : efttop;}
-->
</STYLE>
<STYLE type="text/css">
<!--
BODY{
background-image : url(
画像URL);
background-repeat :
repeat-y;
background-attachment :
fixed;background-position : left top;}
-->
</STYLE>

背景・左上に並べて表示(スクロール) 背景・左端上に1つだけ表示(固定)
<STYLE type="text/css">
<!--
BODY{
background-repeat :
repeat-x;
background-attachment :
scroll;background-position : left top;
background-image : url(
画像URL);
}
-->
<STYLE type="text/css">
<!--
BODY{
background-image : url(
画像URL);
background-repeat :
no-repeat;
background-attachment :
fixed;background-position : left top;}
-->
</STYLE>

背景・左中央に1つだけ表示(スクロール) 背景・左中央に1つだけ表示(固定)
<STYLE type="text/css">
<!--
BODY{
background-image : url(
画像URL);
background-repeat :
no-repeat;
background-attachment :
scroll;background-position : left center;}
-->
</STYLE>
<STYLE type="text/css">
<!--
BODY{
background-image : url(
画像URL);
background-repeat :
no-repeat;
background-attachment :
fixed;background-position : left center;}
-->
</STYLE>

背景・上中央に1つだけ表示(スクロール) 背景・上に並べて表示(固定)
<STYLE type="text/css">
<!--
BODY{
background-repeat :
no-repeat;
background-attachment :
scroll;background-position : center top;
background-image : url(
画像URL);
}
-->
</STYLE>
<STYLE type="text/css">
<!--
BODY{
background-image : url(
画像URL);
background-repeat :
repeat-x;
background-attachment :
fixed;background-position : center top;}
-->
</STYLE>

背景・タイル状に並べる 背景・上中央に1つだけ表示(固定)
<STYLE type="text/css">
<!--
BODY{
background-image : url(
画像URL);
background-repeat :
repeat;
}
-->
</STYLE>

<STYLE type="text/css">
<!--
BODY{
background-image : url(
画像URL);
background-repeat :
no-repeat;
background-attachment :
fixed;background-position : center top;}
-->
</STYLE>