Hallo,
border-spacing:...; kommt meiner Sache schon näher, funktioniert aber leider nur im Netscape Navigator...
Nein. Ganz bestimmt nicht.
Auch ... MS IE 5.0 (Win) koennen es.
Nein. Ganz bestimmt nicht. ;-))
Dann probier z.B. folgendes aus:
table { border-collapse: separate; border-spacing: 3px; }
*g* Die 3px sind zufällig das Standard-Borderspacing vom IE. Er kann _definitiv_ _kein_ border-spacing im CSS:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Tabellen</title>
<style type="text/css">
<!--
table.mitcss {border:1px outset black; border-collapse:separate; border-spacing:20px;}
table.mitcss td {border:1px inset black; padding:50px;}
-->
</style>
</head>
<body>
<table border="1" cellpadding="50" cellspacing="20">
<tr>
<td>Zelle</td>
<td>Zelle</td>
</tr>
<tr>
<td>Zelle</td>
<td>Zelle</td>
</tr>
</table>
<hr>
<table class="mitcss">
<tr>
<td>Zelle</td>
<td>Zelle</td>
</tr>
<tr>
<td>Zelle</td>
<td>Zelle</td>
</tr>
</table>
</body>
</html>
viele Grüße
Axel