メインメニュー


[スポンサードリンク]


背景画像を固定する
background-attachment:固定の有無

固定の有無:
fixed 背景画像の位置を固定する
scroll スクロールに応じて背景を移動させる (デフォルト値)

background-attachmentプロパティで、背景画像を固定させるかどうかを設定します。


別窓にサンプルを表示します(背景画像を固定させる)
  

<STYLE type="text/css">
<!--
BODY { background-image : url(img/atm005_r.jpg);
       background-repeat: no-repeat;
       background-attachment:fixed;
}
-->
</STYLE>

<BODY>
<H4><B>background-attachment : fixed<BR>(背景画像を固定する)</B></H4>
<BR>
スクロールさせても背景画像は固定されたままです。<BR>
</BODY>

別窓にサンプルを表示します(背景画像を固定させない)
  

<STYLE type="text/css">
<!--
BODY { background-image : url(img/spr002_r.jpg);
       background-repeat: no-repeat;
       background-attachment:scroll;
}
-->
</STYLE>

<BODY>
<H4><B>background-attachment : scroll<BR>(背景画像を固定させない)</B></H4>
<BR>
スクロールとともに背景画像もスクロールされます。<BR>
</BODY>