class wird nicht richtig wiedergegeben

Status
Nicht offen für weitere Antworten.

renard

Erfahrenes Mitglied
Hallo!

Ich habe ein externes CSS-file und habe mir in meiner html-Datei noch folgende CSS-Elemente im head definiert.
HTML:
 <style type="text/css">
 .navigationfont {color: #FFFFFF; font-size: 18; font-family:Arial;}
 .contentfont {color: #FFFFFF; font-size: 12; font-family: Arial, Helvetica, sans-serif;}
 </style>

Im body will ich beides so verwenden:
HTML:
 <div id="navigation" class="navigationfont"><strong>Team &nbsp;&nbsp;&nbsp;Angebot &nbsp;&nbsp;&nbsp;Finanzierung &nbsp;&nbsp;&nbsp;Buchungsformular &nbsp;&nbsp;&nbsp;AGB &nbsp;&nbsp;&nbsp;Kontakt &nbsp;&nbsp;&nbsp;Disclaimer</strong></div>
 
 <div id="content" class="contentfont">
 <table width="1000px"  border="1" cellspacing="0" cellpadding="0">
   <tr>
     <td><img src="spacer.gif" /></td>
     <td>Die Welt ist trist und grau.</td>
     <td><img src="spacer.gif" /></td>
   </tr>
 </table></div>

Der erste font wird richtig angezeigt, aber der zweite genau gleich wie der erste, obwohl er nur 12px und nicht 18px hat. Was ist falsch?
 
Zuletzt bearbeitet von einem Moderator:
Probier mal folgendes:

Code:
.navigationfont {color: #FFFFFF; font-size: 18px; font-family:Arial;}
.contentfont {color: #FFFFFF; font-size: 12px; font-family: Arial, Helvetica, sans-serif;}
HTML:
<div id="content" class="contentfont">
<table width="1000px" border="1" cellspacing="0" cellpadding="0">
<tr>
<td><img src="spacer.gif" /></td>
<td class="contentfont">Die Welt ist trist und grau.</td>
<td><img src="spacer.gif" /></td>
</tr>
</table></div>
 
Status
Nicht offen für weitere Antworten.
Zurück