Christoph: CSS Datei funktioniert nich

Beitrag lesen

Hallo ihr.

Ich bin echt ratlos, weil ich nich weiß, warum er die CSS-DAtei nicht einließt. Eigentlich sollten dann in der Ausgabe die Scrollbalken farbig werden und bei der Tabelle sollte in einer Zeile der Rand weg...
Ich finde aber den Fehler nich...

==========
format.css:

body {
  scrollbar-arrow-color:#666699;
  scrollbar-face-color:#A0A8E0;
  scrollbar-highlight-color:#666699;
  scrollbar-3dlight-color:#A0A8E0;
  scrollbar-shadow-color:#666699;
  scrollbar-darkshadow-color:#666699;
  scrollbar-track-color:#666699;
  }

td.eckelinks {
  border-style: solid;
  border-left-width:0px
  border-top-width:0px
  }

===========
HTML-DATEI:

<html>
<head>
<link rel=stylesheet type="text/css" href="format.css">
</head>
<body>
<table border="1"  height="100%" cellpadding="3" cellspacing="0" bordercolor="#111111" background="img/hg.jpg" bordercolorlight="#666699" bordercolordark="#666699">
  <tr>
    <td class="eckelinks" width="20"> </td>
    <td bgcolor="#666699" align="center" height="24" width="100%"><font color="#FFFFFFF"><b>
    Information</b></font></td>
    <td class="eckerechts" width="20"> </td>
  </tr>
  <tr>
  <td colspan="3">
   TEXT
    </td>
  </tr>
</table>
</body>
</html>