Bonjour à tous,
J'ai repris le code d'un menu comportant des effets de dégradé de couleurs pour mon intranet.
Lorsque je le teste au travail, il fonctionne correctement sur FF version 19 (j'obtiens bien un dégradé bleu avec "background-color: #E0F2F7 ;") et quand je le teste chez moi avec FF 20 je n'obtiens qu'un dégradé de gris !
Aurais je commis une erreur quelque part ?
Merci d'avance pour votre aide !
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 #menu { width: 1112px; margin: 60px auto; border: 1px solid #222; background-color: #E0F2F7 ; /* #0404B4 */ background-image: -moz-linear-gradient(#A9E2F3, #0404B4); /* #444, #111*/ background-image: -webkit-gradient(linear, left top, left bottom, from(#444), to(#111)); background-image: -webkit-linear-gradient(#444, #111); background-image: -o-linear-gradient(#444, #111); background-image: -ms-linear-gradient(#444, #111); background-image: linear-gradient(#444, #111); -moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px; -moz-box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset; -webkit-box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset; box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset; }
Partager