壁紙を左下に固定する  
  
壁紙を繰り返し表示させずに左下に1枚だけ固定します。 
画面をスクロールしても壁紙は動きません。
  
☆ <head>〜</head> の間に
  
<STYLE type="text/css"> 
<!-- 
BODY 
{ 
background-image : url("壁紙にする画像のURL"); 
background-attachment: fixed; 
background-position:0% 100%; 
background-repeat: no-repeat; 
} 
--> 
</STYLE> 
 | 
 
  
 
 
 |