セルとセルの間の余白をなくす

動作ブラウザ 【 IE:5.0  NN:6.0  Safari:1.0】 ■CSSバージョン【1】
Internet Explorer Netscape Navigator iCab Safari
3.0x 4.0x 4.5 5.0x 5.5 6.0 2.0x 3.0x 4.0x 4.x 6.0 7.0 2.x 1.x
Windows × × - × × × × - -
Macintosh × × × × - - × × × × ×
UNIX - - - - - - × × × × - -

ポイント table { border-collapse:collapse; }
説  明 テーブルのセルとセルの間の空白/余白をなくすにはborder-collapseプロパティにcollapseを設定します。
サンプル <html>
<head>
<title>セルとセルの間の余白をなくす</title>
<style type="text/css"><!--
table { border-collapse:collapse;}
td { padding: 10px;border: 1px solid #0000FF; background-color : #FFFFFF;}
--></style>
</head>
<body>
【セルとセルの間の余白をなくす】
<table>
<tr>
<td>みかん</td>
<td>りんご</td>
</tr>
<tr>
<td>バナナ</td>
<td>ピーチ</td>
</tr>
</table>
</body>
</html>
補足説明 Opera 6以降でも動作します。

■サンプルを実行する >>実行
■各ブラウザでの動作結果を見る >>View!