background-attachment

書式 background-attachment:方法
対象全ての要素
継承しない
初期値 scroll
解説
背景画像を固定するかどうか指定します。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>
<img src="Default.png">
<div>Dashboard<br>
Sample text.<br>
attachment test.<br>
scroll and fixed...<br>
Umm...
</div>
</body>
</html>
実際のサンプルをダウンロード