Css - Hover
Nu vil jeg altså lære det.Jeg har som mange andre en Css fil, hvor jeg har defineret en Hover og en active osv osv
Men hvordan giver jeg en class en anden form for Hover effekt
hover
a:link {
color : Black;
text-decoration : none;
background-image : url(foldoutmenu2_arrow.gif);
background-repeat : no-repeat;
}
a:visited {
color : Black;
text-decoration : none;
background-image : url(foldoutmenu2_arrow.gif);
background-repeat : no-repeat;
}
a:hover {
color : Black;
text-decoration : none;
background-image: url(foldoutmenu2_arrow_open.gif);
background-repeat : no-repeat;
}
a:active {
color : Black;
text-decoration : none;
background-image: url(foldoutmenu2_arrow_open.gif);
background-repeat : no-repeat;
}
body,{
scrollbar-3dlight-color : #003399;
scrollbar-arrow-color : #FFFFFF;
scrollbar-darkshadow-color : #FFFFFF;
scrollbar-face-color : #F4F4F4;
scrollbar-highlight-color : #FFFFFF;
scrollbar-shadow-color : #003399;
scrollbar-track-color : #FFFFFF;
text-align : center;
font : 10px Verdana;
}
.Testimonial
{
font : 10px Verdana;
text-align: Left;
padding-left: 40px;
}
Jeg vil gerne have Testimonial til at have en anden form for Hover effekt
Men hvordan er det jeg skriver det
MC
