「いちご」


背景画像を左一列に並べています。
背景は『HTML』または下記のソースを参考にしてください。


いちごの背景   いちごの背景


いちごの背景  いちごの背景


いちごの背景  いちごの背景



いちごの背景  いちごの背景



いちごの背景  いちごの背景





左一列に並べる。

<STYLE type="text/css">
<!--
BODY {
background-image : url(○○.jpg);
background-attachment: fixed;
background-repeat: repeat-y;
background-position: left;
background-color: #FFFFFF;
}
-->
</STYLE>



右一列に並べる。

<STYLE type="text/css">
<!--
BODY {
background-image : url(○○.jpg);
background-attachment: fixed;
background-repeat: repeat-y;
background-position: right;
background-color: #FFFFFF
}
-->
</STYLE>



表の中に背景画像を並べる。



左一列に並べる。


<table style="
background-image:url(○○.jpg);
background-repeat:repeat-y;
background-position:left">
<tr><td>ここに文字を書く。</td></tr></table>






右一列に並べる。


<table style="
background-image:url(○○.jpg);
background-repeat:repeat-y;
background-position: rigyt">
<tr><td>ここに文字を書く。</td></tr></table>










▲ Page Top