Hi,
Ich habe folgendes Problem. Ich habe einen link mit hover effekt erstellt.
Mit dem Internet Explorer gibt es da auch überhaupt keine Probleme aber wenn ich die Seite mit dem Firefox öffne bleibt der hover Effekt aus.
Ich habe den Quelltext schon mehrere Male umgestellt aber nichts hat funktioniert.
Vielleicht könnt Ihr mir ja helfen.
Hier der Quelltext:
Code
<div id="news1"><a href="">
<div class="bild_news"></div>
<div class="überschrift_news">Text</div>
<div class="small_font">Text</div></a></div>
Und hier der die CSS:
Code
.überschrift_news {
position: static;
height: auto;
width: 158px;
color: #000000;
font-size: 13px;
font-family: Tahoma;
font-weight: 500;
margin: 6px 4px 0px 72px;
padding: 0px 0px 0px 0px;
text-decoration: underline;
}
.small_font {
color: AD0101;
height: auto;
width: 158px;
font-size: 10px;
font-family: Tahoma;
margin: 5px 5px 0px 72px;
color: #AD0101;
text-decoration: none;
}
#news1 {
width: 240px;
height: 84px;
border-bottom: 1px solid #8B8B8B;
text-decoration: none
}
#news1 a:link {
width: 240px;
height: 84px;
text-decoration: none;
}
#news1 a:hover {
background-color: #EDEDED;
text-decoration: none;
}
#news1 a:visited {
width: 240px;
height: 84px;
text-decoration: none;
}
Alles anzeigen
Vielen Dank =)