/ HTML: Hover nur bei unbesuchten Links
Alex
- css
Hi,
folgendes Problem macht mir gerade zu schaffen:
In meinem Stylesheet habe ich:
---Schnipp---
body { background-color: #E4E4E4; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; line-height: 17px; font-weight: normal; text-transform: none; font-variant: normal; color: #333333; text-decoration: none;}
a:active { color: #FF0000; text-decoration: none}
a:hover { color: #FF0000; text-decoration: underline}
a:link { color: #000033; text-decoration: none}
a:visited { color: #000033; text-decoration: none}
---Schnipp---
Wenn ein Link unbesucht ist, funktioniert der Hover einwandfrei, wurde der Link jedoch aufgerufen und der Status des Links ist visited erscheint der Hover nicht mehr (weder Farbe noch underline), wenn ich erneut auf das Element zeige. Ist das normal oder stimmt was mit meinem stylesheet nicht?
LG, Alex
Hi,
folgendes Problem macht mir gerade zu schaffen:
In meinem Stylesheet habe ich:
---Schnipp---
body { background-color: #E4E4E4; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; line-height: 17px; font-weight: normal; text-transform: none; font-variant: normal; color: #333333; text-decoration: none;}
a:active { color: #FF0000; text-decoration: none}
a:hover { color: #FF0000; text-decoration: underline}
a:link { color: #000033; text-decoration: none}
a:visited { color: #000033; text-decoration: none}
---Schnipp---
Wie immer: die falsche Reihenfolge.
:link, :visited, :focus, :hover, :active
dann klappts auch mit dem Nachbarn.
Andreas
Rehi,
Merci für den Tipp, habe das Dingens vom UltraDev anlegen lassen, werde es ändern.
Grüße, Alex
Hi,
folgendes Problem macht mir gerade zu schaffen:
In meinem Stylesheet habe ich:
---Schnipp---
body { background-color: #E4E4E4; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; line-height: 17px; font-weight: normal; text-transform: none; font-variant: normal; color: #333333; text-decoration: none;}
a:active { color: #FF0000; text-decoration: none}
a:hover { color: #FF0000; text-decoration: underline}
a:link { color: #000033; text-decoration: none}
a:visited { color: #000033; text-decoration: none}
---Schnipp---
Wie immer: die falsche Reihenfolge.
:link, :visited, :focus, :hover, :active
dann klappts auch mit dem Nachbarn.
Andreas