「いちご」


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




いちごの背景


いちごの背景


いちごの背景


いちごの背景





上一列に並べる。

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



下一列に並べる。

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



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



上一列に並べる。


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






下一列に並べる。


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










▲ Page Top