Hi, ich hoffe jemand von euch findet den Fehler:
Ich möchte folgende Tabelle mit css formatieren:
Prob: mit css entsteht ein Rahmen (schätze 2px), was mache ich falsch?
BITTE HILFT MIR
HTML:
<html>
<head>
</head>
<body>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
</td>
</tr>
</table>
</body>
</html>
CSS:
<html>
<head>
<style type="text/css">
table.unsichtbar { border:0px; }
td.unsichtbar { padding:0; margin:0px }
</style>
</head>
<body>
<table class="unsichtbar">
<tr>
<td class="unsichtbar">
</td>
</tr>
</table>
</body>
</html>
MfG pave
Ich möchte folgende Tabelle mit css formatieren:
Prob: mit css entsteht ein Rahmen (schätze 2px), was mache ich falsch?
BITTE HILFT MIR
HTML:
<html>
<head>
</head>
<body>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
</td>
</tr>
</table>
</body>
</html>
CSS:
<html>
<head>
<style type="text/css">
table.unsichtbar { border:0px; }
td.unsichtbar { padding:0; margin:0px }
</style>
</head>
<body>
<table class="unsichtbar">
<tr>
<td class="unsichtbar">
</td>
</tr>
</table>
</body>
</html>
MfG pave
Kommentar