background-attachment

書式

background-attachment:方法

対象

全ての要素

継承

しない

初期値

scroll

バージョン

CSS Level 1

対応ブラウザ

Win IE4.0以降, Mac IE5.0, NN6.0以降, Firefox, Opera 6, Safari

解説

背景画像を固定するかどうか指定します。scrollでスクロール、fixedで固定されます。
サンプルコード
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<style type="text/css"><!--
body { margin:0px; }
div { position:absolute; top:10;left:10px;
background-image:url(bg.jpg);
width:100px;
height:80px;
overflow:scroll;
background-repeat:no-repeat;
}
--></style>
</head>
<body>
<div>CSS<br>
Sample text.<br>
attachment test.<br>
scroll and fixed...<br>
Umm...
</div>
</body>
</html>
実際のサンプルを実行する