Mozilla und Schriftarten
Dirk H
- css
0 dbenzhuser0 Schuer0 Dirk H
Hallo zusammen!
Leider zeigt Mozilla bei mir nicht die im CSS defenierten Schriften an sondern immer eine Schrift mit Serifen. Ich habe schon gegoogeld, wo der Fehler stecken könnte, habe aber leider nichts gefunden. Es wäre toll wenn mir jemand sagen könnte wie ich Mozilla dazu bekomme Arial o.ä. als Schrift einzusetzen.
Danke!
Gruss,
Dirk
<style TYPE="TEXT/CSS">
<A { Text-Decoration: none; } A:LINK { Text-Decoration: none; } A:VISITED { Text-Decoration: none; } --> -->
BODY
{
Font-Family: Font-Family: Arial, Verdana, Helvetica, sans-serif;
}
<A { Text-Decoration: none; } A:LINK { Text-Decoration: none; } A:VISITED { Text-Decoration: none; } --> -->
A:HOVER
{
Color: Black;
Background-Color: #efefef;
}
</style>
Moin
<style TYPE="TEXT/CSS">
<A { Text-Decoration: none; } A:LINK { Text-Decoration: none; } A:VISITED { Text-Decoration: none; } --> -->
BODY
{
Font-Family: Font-Family: Arial, Verdana, Helvetica, sans-serif;
}
<A { Text-Decoration: none; } A:LINK { Text-Decoration: none; } A:VISITED { Text-Decoration: none; } --> -->
A:HOVER
{
Color: Black;
Background-Color: #efefef;
}
</style>
Hast du selbst mal gelesen (geschweige denn verstanden) was du da geschrieben hast?
Dass der IE es anzeigt wundert mich mehr, als das Mozilla es sein lässt :)
Schicke es zur Not mal durch den Validator (http://jigsaw.w3.org/css-validator/), der macht da tatsächlich was brauchbares draus...
Tschö,
dbenzhuser
Hallo,
<A { Text-Decoration: none; }
^
Das Zeichen gehört dort nicht hin.
A:VISITED { Text-Decoration: none; } --> -->
^^^^^^^^^^
dieser Teil kann/muss weg.
Font-Family: Font-Family: Arial, Verdana, Helvetica, sans-serif;
^^^^^^^^^^^
eine Familie zu viel
Zusätzlich könntest du dir schonmal konsequente Kleinschreibung angewöhnen.
Gruß,
_Dirk
Danke für deine schnelle Antwort. Manchmal ist man selber einfach zu blind um offensichtliche Fehler zu finden. Du hast mir sehr geholfen!
Gruss,
Dirk
<A { Text-Decoration: none; }
^
Das Zeichen gehört dort nicht hin.A:VISITED { Text-Decoration: none; } --> -->
^^^^^^^^^^
dieser Teil kann/muss weg.Font-Family: Font-Family: Arial, Verdana, Helvetica, sans-serif;
^^^^^^^^^^^
eine Familie zu viel