07.empty-cellsプロパティは、空白セルのボーダーの表示・非表示を設定するプロパティです。適用要素:th要素、td要素 *border-collapseでseparateを指定している場合のみ有効。


※★CSS
table {
	width: 300px;
	height: 100px;
	border: 1px solid #cccccc;
	empty-cells: show;
}
th,td {
	border: 1px solid #cccccc;
}


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

見出し
データ