[新着] Webテンプレートを仮オープンしました
<html>
<head>
<style type="text/css">
.box {
background:url("背景に画像.gif") no-repeat;
}
.mini_box {
border:solid 1px #000000;
background-color:#ffffff;
}
</style>
</head>
<body>
<p>
説明文
</p>
<div class="box">
<div class="mini_box">
ボックス(背景白)
</div>
背景に画像
</div>
</body>
</html>
<html>
<head>
<style type="text/css">
td {
background:url("images/bg031.gif");
}
.mini_box {
border:solid 1px #000000;
background-color:#ffffff;
}
</style>
</head>
<body>
<table summary="画像ボックス">
<tr>
<th>
説明文
</th>
</tr>
<tr>
<td>
<div class="mini_box">
ボックス(背景白)
</div>
背景に画像
</td>
</tr>
</table>
</body>
</html>