Netscape 4.7 formatiert Texte des Css files nicht sauber
Florian Thöny
- css
HAllo, (ich bins schon wieder)
Ich habe ein Problem mit Netscape 4.75 er zeigt mir die überschrift 3 und 4 nicht an andere formatierungen und überschriften funktionieren
CSS
body { color: black; font-size: 11pt}
h1 { color: #006600; font-weight: bold; font-size: 20pt }
h2 { color: #009900; font-size: 16pt }
h3 { color: #993333; font-style: font-size: 14pt }
h3 { color: #993300; font-style: font-size: 12pt }
Beispiel Ueberschrift <h4>Was will die Nummerierung 2002</h4>
was mache ich falsch?
Danke!
Florian
Hallo,
[..]
h3 { color: #993333; font-style: font-size: 14pt }
h3 { color: #993300; font-style: font-size: 12pt }
Erstens hast Du 2x h3 definiert, da überschreibt der 2. Eintrag den ersten, dann fehlt die Angabe zu font-style und zuletzt verwende lieber px statt pt, da kannst Du Dir u.U. 'ne Menge Ärger ersparen.
Gruß Markus
Hallo,
[..]
h3 { color: #993333; font-style: font-size: 14pt }
h3 { color: #993300; font-style: font-size: 12pt }
Erstens hast Du 2x h3 definiert, da überschreibt der 2. Eintrag den ersten, dann fehlt die Angabe zu font-style und zuletzt verwende lieber px statt pt, da kannst Du Dir u.U. 'ne Menge Ärger ersparen.
insbesondere den Ärger, dass es hübsch aussehen könnte. Und die dynamische Veränderung ist auch problematischer...
Hallo.
h2 { color: #009900; font-size: 16pt }
h3 { color: #993333; font-style: font-size: 14pt }
^
h3 { color: #993300; font-style: font-size: 12pt }
^ ^
was mache ich falsch?
Du gibst keine Formatierung für h4 an und hast ein paar Semikolons vergessen. (http://selfhtml.teamone.de/navigation/faq.htm#css_falsch)
Gruß
Norbert