Kosima: Seltsamer Tabellenrand bei Verwendung von CSS

Beitrag lesen

Guten Tag!
Hallo, an alle CSS und HTML Coder!

Problem: In der 2. und 3. Zeile entsteht links ein dünner Rand.
         Der soll weg.

CSS Datei:

.tabelle {
 border-style: solid;
 border-width: 2px;
 border-color: black;
 border-collapse: separate;
 width: 75%;
 border-right-width: 0px;
 border-top-width: 0px;
}

.tbueberschrift {
 padding: 4px;
 font-weight: bold;
 font-style: italic;
 text-decoration: underline;
}

.tabellenzelle {
 background-color: #FFF5D5;
 border-style: solid;
 border-width: 1px;
 border-color: black;
}

HTML Datei:

<html>
<head>
<link rel="stylesheet" type="text/css" href="kosima.css">
</head>
<body>

<table class="tabelle">

<tr class="tbueberschrift">Ueberschrift</tr>

<tbody class="tbzelle">

<tr>
<td>Zeile eins</td>
</tr>

<tr>
<td>Zeile zwei</td>
</tr>

</tbody>

</table>
</body>
</html>

Was muss ich denn in .tbzelle hinzufügen damit der linke rand weg ist?

kosima