Struppi: a:link funktioniert bei mir unter Mozilla nicht.

Beitrag lesen

Hallo zusammen,

ich habe eine CSS Datei, die folgendermaßen aussieht:

<style type="text/css">
<!--
A:link { font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
font-style: normal;
text-decoration: none;
color: #FFFFFF; }

A:visited { font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
font-style: normal;
text-decoration: none;
color: #FFFFFF; }

A:hover { font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
font-style: normal;
font-weight: normal;
text-decoration: none;
color: #C0C0C0;
cursor: hand; }

A:active { font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
font-style: normal;
font-weight: bold;
text-decoration: none;
color: #FFFFFF; }

Also das ist total umständlich und funktioniert bei mir (MZ 1.4 winXP) ohne Probleme. Darüber hinaus ist 'pt' keine Einheit für die Bildschirmdarstellung http://www.netandmore.de/faq/cgi/fom?file=1153

a:link
{
font-family: Arial, Helvetica, sans-serif;
font-style: normal;
text-decoration: none;
color: #FFFFFF;
}
a:visited { color: #FFFFFF; }
A:hover { color: #C0C0C0; cursor: hand; }
A:active { color: #FFFFFF; }

Es ist übrigens schlechter stil und verwirrt Besucher den besuchten Links die gleiche Farbe zu geben wie den normalen Links. Und ich persönlich bin immer wieder ziemlich angenervt von den nicht unterstrichenen Links, weil man sie in aller Regel nicht sieht und man diese meist nur durch Zufall findet.

Struppi.