Firefox stellt Tabellenrahmen nur in Grau dar

Status
Nicht offen für weitere Antworten.

nitrobesim

Erfahrenes Mitglied
Hi.
Ich habe ein Problem mit dem Firefox und zwar zeigt er mir meinen Tabellenrahmen nur in grau an, obwohl er eigentlich in schwarz programmiert wurde und beim I.E. auch perfekt funktioniert.
Any help?
 

Anhänge

  • problem.jpg
    problem.jpg
    22,8 KB · Aufrufe: 64
Wie sieht denn der betreffende Quellcode aus? Ohne ist eine Fehleranalyse etwas problematisch.
 
Der HTML- / CSS-Code wäre bei der Fehlersuche hilfreicher, als die angehängte Grafik.
 
Okay, sorry.
Folgt anbei.

HTML:
<center><img src="topthing_b.jpg" height="262" width="711"><br>
<table bordercolorlight="#000000" bordercolordark="#000000" bgcolor="#dbe4ed" border="1" bordercolor="#000000" cellpadding="10" cellspacing="7" width="711">
<tbody><tr>
<td align="left" bgcolor="#cccccc" valign="top" bordercolorlight="#000000" bordercolordark="#000000" width="396">
<font face="verdana" size="1">&nbsp;</font></td>
<td align="center" bgcolor="#ffffff" valign="top" width="248">
&nbsp;</td>
</tr>
<tr>
<td colspan="2">
<p align="center"><font face="Times New Roman" size="2"> 
©</font><b><font face="Times New Roman" size="1"> </font>
<font face="verdana" size="1"> 
2003 - 2006. yersey.de&nbsp;&nbsp; 
|&nbsp; Disclaimer&nbsp; |&nbsp; Visits since July 2003 :</font></b></td>
</tr>
</tbody></table>

</center></body></html>
 
Formatiere den Tabellenrahmen mit CSS:

CSS:
table, th, td {
border: 1px solid #000;
}
und verzichte auf die HTML-Attribute zur Rahmenformatierung.
 
HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title></title>

<style type="text/css">
<!--
table, th, td {
border: 1px solid #000;
} 
-->
</style>

</head>
<body>

<!-- Deine Tabelle -->

</body>
</html>
 
michaelsinterface hat gesagt.:
Formatiere den Tabellenrahmen mit CSS:

CSS:
table, th, td {
border: 1px solid #000;
}
und verzichte auf die HTML-Attribute zur Rahmenformatierung.
Wer lesen kann, ist klar im Vorteil ;)
 
Status
Nicht offen für weitere Antworten.
Zurück