B
bendis
Hallo, ich möchte eine border um ein Bild legen, dass als Link funktionieren soll, d.h. bei a:hover soll sich die Link-Definition so ändern, dass ein eine unsichtbare (weisse) border in eine solid border ändert.
Das fumtioniert im IE auch schon ganz gut, aber im Mozilla und Opera ist die border nicht vollständig sichbar...
Hier ein kleines Beispiel:
http://citizen-k.de/testarea/mouseover.htm
Weiß jemand Rat?
Danke im vorraus!
Hier meine stylesheet:
Das fumtioniert im IE auch schon ganz gut, aber im Mozilla und Opera ist die border nicht vollständig sichbar...
Hier ein kleines Beispiel:
http://citizen-k.de/testarea/mouseover.htm
Weiß jemand Rat?
Danke im vorraus!
Hier meine stylesheet:
Code:
<style type='text/css'>
<!--
A.Pic:link, A:active
{
border: solid 1px #ffffff;
margin: 5px;
padding: 5px;
width: 96px;
height: 72px;
}
A.Pic:visited
{
border: solid 1px #ffffff;
margin: 5px;
padding: 5px;
width: 96px;
height: 72px;
}
A.Pic:hover
{
border: solid 1px #666666;
margin: 5px;
padding: 5px;
width: 96px;
height: 72px;
}
-->
</style>
Zuletzt bearbeitet von einem Moderator: