Bonjour,

quelqu'un pourrait m'expliquer pourquoi le dégradé que j'applique à mes boutons fonctionne sur Chrome mozilla mais pas sur IE.
Pourtant j'ai appliqué toutes les recommandation que j'ai trouvé sur internet pour que cela fonctionne avec tout les navigateur récents.

Voici mon bout de css.
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
19
20
 
.guide_lien:hover{
     color: #222;
     background: -webkit-linear-gradient( #0f4e71, #e5ecf0);
     background:    -moz-linear-gradient( #0f4e71, #e5ecf0);
     background:     -ms-linear-gradient( #0f4e71, #e5ecf0);
     background:      -o-linear-gradient( #0f4e71, #e5ecf0);
     background:         linear-gradient( #0f4e71, #e5ecf0);
}
.guide_lien:active{
     color: #000;
     background: #444;
     background: -webkit-linear-gradient( #e5ecf0, #0f4e71);
     background:    -moz-linear-gradient( #e5ecf0, #0f4e71);
     background:     -ms-linear-gradient( #e5ecf0, #0f4e71);
     background:      -o-linear-gradient( #e5ecf0, #0f4e71);
     background:         linear-gradient( #e5ecf0, #0f4e71);
     box-shadow: 1px 1px 10px black inset, 
                 0 1px 0 rgba( 255, 255, 255, 0.4);
}