div要素にクラスを定義して、背景色を指定する。
《サンプル》
<style type="text/css">
.sample {
width: 100%;
background-color: #99FFCC;
}
</style>
<body>
<h1>ブロック要素の背景色(div編)</h1>
<div class="sample">
<style type="text/css">
.sample {
width: 100%;
background-color: #99FFCC;
}
</style>
<body>
<h1>ブロック要素の背景色(div編)</h1>
<div <strong>class</strong>="sample">
...
</div>
</body>
</div>
</body>
background: は、
{
background-color: #339933;
background-image: url('../../img/34bar_sv.jpg');
background-repeat: repeat-x;
background-attachment: fixed;
background-position: left top;
}
を一括指定する場合に利用します。