a:link geht nicht
Florian Köhler
- css
0 Thomas J.S.0 Toby0 fastix
Hallo zusammen,
ich möchte das links in einer bestimmten farbe und nicht unterstrichen angezeigt werden in einem Menü. Das klappt aber nicht der a:link funktioniert nicht die links sind unterstrichen, was mache ich falsch
<style type="text/css" media="screen"><!--
a:link { text-decoration: none; color: white; font-weight: bold }
a:hover { text-decoration: none; color: black; font-weight: bolder }
a:active { text-decoration: none; color: gray }
--></style>
</head>
<body>
<table>
<tr>
<td><a href="firma_mitarb.htm">Unsere Mitarbeiter</a></td>
gibt es den CSS VAlidierungsservice auf http://www.w3.org/ nicht mer?
Gruss
FLorian
Hallo,
ich möchte das links in einer bestimmten farbe und nicht unterstrichen angezeigt werden in einem Menü. Das klappt aber nicht der a:link funktioniert nicht die links sind unterstrichen, was mache ich falsch
<style type="text/css" media="screen">
Bei welchem Browser hast du Probleme?
Sonst nimm mal media="screen" raus.
Ev. ist es gut wenn du die URL der Seite gibst wo es nicht gehen sollte.
gibt es den CSS VAlidierungsservice auf http://www.w3.org/ nicht mer?
doch: http://jigsaw.w3.org/css-validator/
Grüße
Thomas
ich möchte das links in einer bestimmten farbe und nicht unterstrichen angezeigt werden in einem Menü. Das klappt aber nicht der a:link funktioniert nicht die links sind unterstrichen, was mache ich falsch
Bei welchem Browser hast du Probleme?
IE6.0 scheint aber nur Lokal nicht zu funktionieren habe die Seite ins Netz geladen dort ist alles OK. Komische sache :-)
gibt es den CSS VAlidierungsservice auf http://www.w3.org/ nicht mer?
doch: http://jigsaw.w3.org/css-validator/
Seite scheint Tot zu sein
Danke & Gruss
Florian
HI,
a:link { text-decoration: none; color: white; font-weight: bold }
a:hover { text-decoration: none; color: black; font-weight: bolder }
a:active { text-decoration: none; color: gray }
da fehtl noch: a:visited....
Grüße aus Leverkusen,
Toby
a:link { text-decoration: none; color: white; font-weight: bold }
a:hover { text-decoration: none; color: black; font-weight: bolder }
a:active { text-decoration: none; color: gray }
Halte folgende Reihenfolge ein:
a:link {}
a:visited {}
a:hover {}
a:active {}
Dann klappts auch mit der Nachbarin :)