Bonjour,
j'ai un code css pour designer mes boutons submit, et je veux changer leur apparence quand la souris passe dessus.
Voici mon code :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 
.submitcontact {
	/*border: 1px solid #a90e32;*/
    background-color: #a90e32;
    color:white;
    font-weight:bold;
    margin-bottom:10px;
    cursor:pointer;
}
 
.submitcontact:hover {
	/*border:1px solid #a90e32;*/
    background-color:white;
    color:#a90e32;
    font-weight:bold;
    margin-bottom:10px;
    cursor:pointer;
}
et ça marche bien sous Mozilla mais pas sous IE...
Quelqu'un sait pourquoi? et comment résoudre ce problème ?
Merci d'avance