background

書式 background:色 画像URI 繰り返し方法 固定方法 横位置 縦位置
対象全ての要素
継承しない
初期値 各プロパティの初期値
解説
背景に関する設定を一括して行います。プロパティの指定順序は順不同になっています。
サンプルコード
<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:white url(bg.jpg) repeat-y fixed 0px 0px;
width:100px;
height:100px;
overflow:scroll;
}
--></style>
</head>
<body>
<img src="Default.png">
<div>Dashboard<br>
Sample text.<br>
attachment test.<br>
scroll and fixed...<br>
Umm...
</div>
</body>
</html>
実際のサンプルをダウンロード