border-spacing

書式 border-spacing:間隔
対象table要素
継承する
初期値 0
解説
セル間隔を指定します。
サンプルコード
<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;
border-spacing:10px; }
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>
</table>
</body>
</html>
実際のサンプルをダウンロード