Rahmenlinie

Status
Nicht offen für weitere Antworten.

Hattrix

Erfahrenes Mitglied
Hallo,

wenn man folgendes schreibt:

Code:
<table><tr>
<td style="border-bottom: 1px solid #FF0000;"></td>
<td style="border-bottom: 1px solid #FF0000;"></td>
</tr></table>

... dann unterbricht die Linie in der mitte. Was muss man machen, damit die durchgezogen wird?
 
Setz mal den Zellabstand auf null:

Code:
<table cellspacing="0"><tr>
<td style="border-bottom: 1px solid #FF0000;"></td>
<td style="border-bottom: 1px solid #FF0000;"></td>
</tr></table>

Nachtrag: Moderne Browser, zu denen der IE6 nicht zählt, unterstützen anstelle des empfohlenen Attributs auch die border-spacing-Eigenschaft.

Code:
<table style="border-spacing: 0;"><tr>
<td style="border-bottom: 1px solid #FF0000;">aha</td>
<td style="border-bottom: 1px solid #FF0000;">aha</td>
</tr></table>
 
Status
Nicht offen für weitere Antworten.
Zurück