05.border-spacingプロパティは、隣り合うセルの境界線の間隔を設定するプロパティです。適用要素:table要素 *border-collapseでseparateを指定している場合のみ有効。 *IEは標準モードでのみ機能(IE7以下は未対応)


※★CSS
table {
	width: 300px;
	height: 100px;
	border: 1px solid #cccccc;
	border-collapse: separate;
	border-spacing: 5px;
}
th,td {
	border: 1px solid #cccccc;
}


※★HTML
<table>
<tr>
	<th>見出し</th>
	<th>見出し</th>
</tr>
<tr>
	<td>データ</td>
	<td>データ</td>
</tr>
</table>

見出し 見出し
データ データ