chu: Seiteninhalt immer FETT geschrieben?

Beitrag lesen

Hallo,
Ich hab ein Problem mit meiner Seite, der Code ist bis auf 3 Ausnahmen valide, die Ausnahmen sind:

Error Line 11, Column 118: there is no attribute "bordercolor"
Error Line 13, Column 34: there is no attribute "bordercolor"
Error Line 29, Column 68: there is no attribute "background"

Bedeutet wohl das es unter <th> die Attribute bordercolor und background nicht gibt, obwohl IE und Firefox keine Probleme damit haben, dass stört also weniger.

Was stört ist das alles was auf meiner Seite steht in FETT dargestellt wird, ich denke das liegt an dem <th> Anstelle des <td>. Problem ist nur das wenn ich <td> benutze die ganze Seite total schrottig aussieht, nichts passt mehr richtig. Deshalb meine Frage, was ist der Unterschied zwischen <th> und <td> ich dachte das erste steht eben für Tabellenköpfe und ist im Vergleich zu <td> nur FETT geschrieben?

Das ist mein Seitencode, kann mir wer sagen weshalb dort immer alles FETT geschrieben wird?

  
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
<html xmlns="http://www.w3.org/1999/xhtml" lang="de">  
  
<head>  
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>  
<title>M E I N E - S E I T E</title>  
<link href="style.css" type="text/css" rel="stylesheet"/>  
</head>  
  
<body>  
<table width="600" border="1" style="border-style:solid;" align="center" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF">  
  <tr>  
    <th valign="top" bordercolor="#000000" style="border-style:solid;" scope="row">  
      <table width="100%" border="0" cellspacing="0" cellpadding="0">  
        <tr>  
          <th scope="row">  
            <img src="img/layout/header001.png" width="600" height="150" alt="header001"/></th>  
          </tr>  
         <tr>  
        <th scope="row"><img src="img/layout/balken_oben.png" width="600" height="19" alt="balken_oben"/></th>  
      </tr>  
  
<!-- Begin Navigation -->  
  
  
          <tr>  
          <th scope="row"><table width="100%" border="0" cellspacing="0" cellpadding="0">  
            <tr>  
              <th width="160" align="left" valign="top" background="img/layout/nav_04.png" scope="row">  
               <table width="160"  border="0" cellspacing="0" cellpadding="0">  
                <tr>  
                  <th scope="row"><img src="img/layout/nav_01.png" width="160" height="40" alt="nav_01"/></th>  
                </tr>  
                <tr>  
                <th width="22%" align="left" valign="top" background="img/layout/nav_02.png" scope="row">  
  
<h1 id="navi">  
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="startseite">Startseite</a><br />  
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="nachrichten">Nachrichten</a><br />  
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="mitglieder">Mitglieder</a><br />  
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="server">Server</a><br />  
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="banliste">Banliste</a><br />  
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="information">Information</a><br />  
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="patch">Patch</a><br />  
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="gb">Gästebuch</a><br />  
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="impressum">Impressum</a><br />  
</h1>  
  
               </th>  
                </tr>  
                <tr>  
                  <th scope="row"><img src="img/layout/nav_03.png" width="160" height="21" alt="nav_03"/></th>  
                </tr>  
                 <tr>  
                  <th width="100%" align="center" valign="top" background="img/layout/nav_04.png" scope="row"></th>  
                </tr>  
              </table>  
              </th>  
  
  
  
  
<!-- Ende Navigation -->  
  
  
<td width="78%" valign="top" bgcolor="#FFFFFF">  
  
  
  
<!-- Begin Content -->  
  
  
INHALT BLA BLA BLA  
  
  
<!-- Ende Content -->  
  
  
             </td>  
            </tr>  
            <tr>  
              <th height="15" align="left" valign="bottom" background="img/layout/nav_04.png" scope="row">  
                <img src="img/layout/nav_05.png" width="160" height="18" align="bottom" alt="nav_05"/></th>  
              <td height="15" align="left" valign="top" bgcolor="#FFFFFF">&nbsp;</td>  
            </tr>  
          </table>  
         </th>  
        </tr>  
        <tr>  
          <th background="img/layout/balken_unten.png" width="600" height="18" align="center" scope="row">  
            <h1 id="copyright">Copyright © 2010</h1>  
          </th>  
        </tr>  
      </table>  
    </th>  
  </tr>  
</table>  
</body>  
</html>  

Grüße,
chu