Wenn du den Selektor .link:hover direkt hinter den Selektor .link setzt, funktioniert es auch im Firefox.
Wie meinst du das dahinter setzten?
Diese Reihenfolge im stylesheet:
~~~css
a {
width: 105px;
height: 30px;
color: yellow;
background-color: #e0321f;
text-decoration:none;
display:block;
font-size: 12px;
text-align:center;
margin-bottom: 5px;
padding: 5px;
border-top: 3px solid #f94b38;
border-left: 3px solid #f94b38;
border-bottom: 3px solid #c71906;
border-right: 3px solid #c71906;
}
a:hover {
border-top: 3px solid #ff6451;
border-left: 3px solid #ff6451;
border-bottom: 3px solid #ae0000;
border-right: 3px solid #ae0000;
}
a span.normal {
display:block;
}
a span.hover {
display:none;
}
usw
Gruß
manya