Hi Cheatah,
Er spuckt einfach das ganze quellcode vom css aus, wie zum Beispiel:
body, p {
font-family: Arial;
font-size: 10pt;
font-style: normal;
color: #000000;
background: #FFFFFF;
}
table, tr, td {
font-family: Arial;
font-size: 8pt;
font-style: normal;
}
table, th {
font-family: Arial;
font-size: 8pt;
font-weight : bold;
font-style: normal;
}
border {
border-width:0.2cm;
border-style:solid;
}
h1 { font-size:xx-large; }
h2 { font-size:x-large; }
h3 { font-size:large; }
h4 { font-size:medium; }
h5 { font-size:small; }
h6 { font-size:x-small; }
a:link { color:#990000; }
a:visited { color:#808080; }
a:active { color:#cccccc; font-style:italic; }
welchen Content-Type liefert der Server denn mit der CSS-Datei aus? Netscape reagiert ein wenig allergisch auf alles, was nicht text/css ist - wird die Datei beispielsweise nicht gefunden, wird ein 404-Fehler angezeigt.
Cheatah