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