Hajo Newe: Browserkonflikt II

Mein Text von Do:

Hallo Leute !

Ich habe da ein kleines Problem betreffend CSS und Browser. Laut SelfHTML soll es möglich sein die Schriftgröße genau in Punkten (pt) anzugeben. Dieses soll außerdem sowhl bei IE und Netscpae ab den Versionen 4.0 möglich sein. Soweit so gut. Ich habe also meine CSS-Datei geschrieben und eingebunden und welche überraschung erwartete mich natürlich mal wieder: Beim IE klappte es ohne Probleme, aber bei Netscape zeigt er mir irgendeinen Mißt an, aber verdammt nochmal nicht so, wie es aussehen sollte - also wie es der IE anzeigt -.
Kann mich da mal einer aufklären ?

Gruß

Hajo

Anhang:

-> CSS-Datei (style.css):

P  {text-align : justify;}
H1  {font-size : 24pt; color : Black; font-weight : bold; font-family : Arial;}
H2  {font-size : 12pt; font-weight : bold; font-family : Arial; color : Blue; margin-top: 0; margin-bottom: 0;}
H3  {font-size : 8pt; font-family : Tahoma; color : Black; margin-top: 0; margin-bottom: 0;}
A:Link  {text-decoration : none; color : Maroon;}
A:Visited  {text-decoration : none; color : Red;}
A:Active  {text-decoration : none; color : Black;}
A:Hover  {color : Black;text-decoration : none;}
li  {font-size : 10pt;}
td  {font-size : 8pt;}
#head  {color : White; font-size : 10pt; text-align : center; font-weight : bold;}
#city  {font-size: 8pt; color : White; font-weight : normal; text-align : center; margin-top : 0; margin-bottom : 0;}
#title  {color : White; font-size : 12pt; font-weight : bold;}
#team  {font-size : 10pt; color : Navy; text-align : left; font-weight : bold;}
#result  {font-size : 10pt; font-weight : bold; text-align : center;}
#normal  {font-size : 7pt; font-weight : normal; font-style : normal; color : Black; margin-top : 0; margin-bottom : 0;}
#place  {font-size : 7pt; font-weight : normal; text-align : center; color : Black; margin-top : 0; margin-bottom : 0;}
#wert {color : red; font-size : 7pt; font-weight : normal; text-align : center; margin-top : 0; margin-bottom : 0;}
#gf {color : Red; font-size : 7pt; font-weight : normal; text-align : center; margin-top : 0; margin-bottom : 0;}
#kf {color : black; font-size : 7pt; font-weight : normal; text-align : center; margin-top : 0; margin-bottom : 0;}
#hinweis  {font-size: 8pt; color : White; font-weight : normal; text-align : justify;}
BODY  {font-family : Tahoma; font-size : 10pt ;color : Black;}

-> die Problemdatei:

<HTML>

.
.
.

</head>

<body background="../../jpg/back.jpg">
<link href="../../style.css" rel="STYLESHEET" type="text/css">

<table width="600" cellspacing="0" cellpadding="0" border="0">
<tr><td>
<table width="600" cellspacing="0" cellpadding="0" border="0">
<tr>
     <td width=150><img src="../../gif/logo.gif" width=145 height=109 border=0 alt=""></td>
     <td valign=top width=500><br>
       <h1>Formationsligen</h1>
       <br><h2>Saison 1998/1999</h2>
  </td>
</tr>
</table><hr><p>

<ul>  

<li><a href="#1bl">1. Bundesliga Latein</a>
  <li><a href="#standard">Regionalliga Nord Standard</a>
  <li><a href="#rln">Regionalliga Nord Latein</a>
  <li><a href="#oln">Oberliga Nord Latein</a>
</ul>
<p><br>

<a name="1bl">  
<table cellspacing="2" cellpadding="2" border="0">  
<tr align=center bgcolor="black">  

<td id="title" colspan=7>1. Bundesliga Latein</td>
</tr>
<tr align=center bgcolor="black">
     <td width="210" id="head">Mannschaft</td>
     <td width="60" id="head">16.01<p id="city">Erkelenz</td>
     <td width="60" id="head">30.01<p id="city">BS</td>
     <td width="60" id="head">13.02<p id="city">B'haven</td>
     <td width="60" id="head">27.02<p id="city">Öhringen</td>
  <td width="60" id="head">13.03<p id="city">Aachen</td>
     <td width="60" id="head">Summe</td>
</tr>
  <tr bgcolor="#ffffcc">
  <td id="team">TSC Schwarz-Gelb Aachen<p id="normal">A-Team</font></td>
  <td id="result">1<p id="wert">3122121</font></td>
  <td id="result">1<p id="wert">1211221</font></td>
  <td id="result">1<p id="wert">3112311</font></td>
  <td id="result">1<p id="wert">1121123</font></td>
  <td id="result">1<p id="wert">1211211</font></td>
  <td id="result">5<p id="place">1.Platz</font></td>
</tr>

.
.
.

</table>

.
.
.

</html>

  1. Hallo Hajo!

    Dein Problem ist dies:
    </head>

    <body background="../../jpg/back.jpg">
    <link href="../../style.css" rel="STYLESHEET" type="text/css">

    <link ....was auch immer>
    gehört zwischen <head> und </head>!

    Wersuche es mal, wenn's nicht geht melde dich wieder, aber abgesehen von den vielen Leerzeichen (die können, aber müssen nicht Probleme verursachen)habe ich in deinem CSS nichts verdächtiges gesehen.

    Grüße
    Thomas