empty-cells

書式 empty-cells:showまたはhide
対象tableのセル要素
継承する
初期値 show
解説
セル間隔を指定します。
サンプルコード
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<style type="text/css"><!--
body { margin:0px; }
table { position:absolute; left:10px; top:10px;
empty-cells:show; }
th,td { border:1px black solid; }
--></style>
</head>
<body>
<img src="Default.png">
<table>
<tr><th>CPU</th><th>Clock</th></tr>
<tr><td>Power PC G5</td><td>2.5GHz</td></tr>
<tr><td>Xeon</td><td></td></tr>
</table>
</body>
</html>
実際のサンプルをダウンロード