Bonjour,
Je voudrais réaliser un menu html5 et css3, si celà fonctionne bien aves chrome:
Nom : menuchrome.jpg
Affichages : 139
Taille : 44,6 Ko...
Sous IE11:
Nom : menuIe.jpg
Affichages : 131
Taille : 46,1 Ko...
Sous Firefox:
Nom : menufx.jpg
Affichages : 136
Taille : 113,5 Ko...

Mon code HTML est:
Code html : 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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="fr">
	<head>
		<meta charset="utf-8">
 
		<title>Vertical Navigation Menu: CSS3 Coded</title>
 
		<link rel="stylesheet" href="css/styles.css">
 
		<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
		<!--[if lt IE 11]>
			<link rel="stylesheet type="text/css" href="css/ie.css" />
		<![endif]-->
 
	</head>
<body>
 
<div id="content">
 
	<ul class="menu">
		<li class="item1"><a href="test.html">Accueil </a>
 
		</li>
		<li class="item2"><a href="#">Administration<span>12</span></a>
			<ul>
				<li class="subitem1"><a href="#">Coordonnées cellule</a></li>
				<li class="subitem2"><a href="#">Coordonées Entrepreneurs</a></li>
				<li class="subitem3"><a href="#">Directeurs des travaux</a></li>
				<li class="subitem4"><a href="#">Secteurs techniques</a></li>
				<li class="subitem5"><a href="#">CA VIVAQUA</a></li>
				<li class="subitem6"><a href="#">CA HYDROBRU</a></li>
				<li class="subitem7"><a href="#">Liste des Tâches</a></li>
			</ul>
		</li>
		<li class="item3"><a href="#">Flow-Chart<span>14</span></a>
			<ul>
				<li class="subitem1"><a href="#">Nature<span>14</span></a></li>
				<li class="subitem2"><a href="#">Portrait<span>6</span></a></li>
				<li class="subitem3"><a href="#">Animaux<span>2</span></a></li>
			</ul>
		</li>
		<li class="item4"><a href="#">Logistique plan<span>10</span></a>
			<ul>
				<li class="subitem1"><a href="#">Santé<span>14</span></a></li>
				<li class="subitem2"><a href="#">Nutrition<span>6</span></a></li>
			</ul>
		</li>
		<li class="item5"><a href="#">Assurances<span>3</span></a>
			<ul>
				<li class="subitem1"><a href="#">Santé<span>14</span></a></li>
				<li class="subitem2"><a href="#">Nutrition<span>6</span></a></li>
			</ul>
		</li>
		<li class="item6"><a href="#">Documents de travail<span>26</span></a>
			<ul>
				<li class="subitem1"><a href="#">Santé<span>14</span></a></li>
				<li class="subitem2"><a href="#">Nutrition<span>6</span></a></li>
			</ul>
		</li>
	</ul>
 
</div>
 
<!--initiate accordion-->
<script type="text/javascript">
        $(function() {
        
            var menu_ul = $('.menu > li > ul'),
                   menu_a  = $('.menu > li > a');
            
            menu_ul.hide();
        
            menu_a.click(function(e) {
                e.preventDefault();
                if(!$(this).hasClass('active')) {
                    menu_a.removeClass('active');
                    menu_ul.filter(':visible').slideUp('normal');
                    $(this).addClass('active').next().stop(true,true).slideDown('normal');
                } else {
                    $(this).removeClass('active');
                    $(this).next().stop(true,true).slideUp('normal');
                }
            });
        
        });
</script>
 
</body>
</html>

Et mon code CSS:

Code css : 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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
body {
	font-size: 100%;
	background:white;
}
a {
	text-decoration: none;
}
ul, ul ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#content {	
	width: 220px;
	margin: 100px auto;
	font-size: 0.8125em;
}
.menu {
	width: auto;
	height: auto;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,.73), 0px 0px 18px 0px rgba(0,0,0,.13);
	-moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,.73), 0px 0px 18px 0px rgba(0,0,0,.13);
	box-shadow: 0px 1px 3px 0px rgba(0,0,0,.73), 0px 0px 18px 0px rgba(0,0,0,.13);
}
.menu > li > a {
	background-color: #BC8F8F;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(34, 139, 34)),to(rgb(80, 88, 100)));
	background-image: -webkit-linear-gradient(top, rgb(34, 139, 34), rgb(80, 88, 100));
	background-image: -moz-linear-gradient(top, rgb(34, 139, 34), rgb(80, 88, 100));
	background-image: -o-linear-gradient(top, rgb(34, 139, 34), rgb(80, 88, 100));
	background-image: -ms-linear-gradient(top, rgb(34, 139, 34), rgb(80, 88, 100));
	background-image: linear-gradient(top, rgb(34, 139, 34), rgb(80, 88, 100));
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#228B22', EndColorStr='#505864');
	border-bottom: 1px solid #33373d;
	-webkit-box-shadow: inset 0px 1px 0px 0px #878e98;
	-moz-box-shadow: inset 0px 1px 0px 0px #878e98;
	box-shadow: inset 0px 1px 0px 0px #878e98;
	width: 100%;
	height: 2.75em;
	line-height: 2.75em;
	text-indent: 2.75em;
	display: block;
	position: relative;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 600;
	color: #fff;
	text-shadow: 0px 1px 0px rgba(0,0,0,.5);
}
.menu ul li a {
	background: #66CDAA;
	border-bottom: 1px solid #efeff0;
	width: 100%;
	height: 2.75em;
	line-height: 2.75em;
	text-indent: 2.75em;
	display: block;
	position: relative;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 1em;
	font-weight: 500;
	color: #000000;
}
.menu ul li:last-child a {
	border-bottom: 1px solid #33373d;
}
.menu > li > a:hover, .menu > li > a.active {
	background-color: #35afe3;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(69, 199, 235)),to(rgb(38, 152, 219)));
	background-image: -webkit-linear-gradient(top, rgb(69, 199, 235), rgb(38, 152, 219));
	background-image: -moz-linear-gradient(top, rgb(69, 199, 235), rgb(38, 152, 219));
	background-image: -o-linear-gradient(top, rgb(69, 199, 235), rgb(38, 152, 219));
	background-image: -ms-linear-gradient(top, rgb(69, 199, 235), rgb(38, 152, 219));
	background-image: linear-gradient(top, rgb(69, 199, 235), rgb(38, 152, 219));
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#45c7eb', EndColorStr='#2698db');
	border-bottom: 1px solid #103c56;
	-webkit-box-shadow: inset 0px 1px 0px 0px #6ad2ef;
	-moz-box-shadow: inset 0px 1px 0px 0px #6ad2ef;
	box-shadow: inset 0px 1px 0px 0px #6ad2ef;
}
.menu > li > a.active {
	border-bottom: 1px solid #1a638f;
}
.menu > li > a:before {
	content: '';
	background-image: url(../images/sprite.png) ;
	background-repeat: no-repeat;
	font-size: 36px;
	height: 1em;
  	width: 1em;
	position: absolute;
  	left: 0;
	top: 50%;
	margin: -.5em 0 0 0;
}
.item1 > a:before {
	background-position: 0 0;
}
.item2 > a:before {
	background-position: -38px 0;
}
.item3 > a:before {
	background-position: 0 -38px;
}
.item4 > a:before {
	background-position: -38px -38px;
}
.item5 > a:before {
	background-position: -76px 0;
}
.item6 > a:before {
	background-position: -76px -38px;
}
.menu > li > a span {
	font-size: 0.857em; 
	display: inline-block;
	position: absolute;
	right: 1em;
	top: 50%; 
	background: #48515c;
	line-height: 1em;
	height: 1em;
	padding: .4em .6em;
	margin: -.8em 0 0 0; 
	color: #fff;
	text-indent: 0;
	text-align: center;
	-webkit-border-radius: .769em;
	-moz-border-radius: .769em;
	border-radius: .769em;
	-webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, .26), 0px 1px 0px 0px rgba(255, 255, 255, .15);
	-moz-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, .26), 0px 1px 0px 0px rgba(255, 255, 255, .15);
	box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, .26), 0px 1px 0px 0px rgba(255, 255, 255, .15);
	text-shadow: 0px 1px 0px rgba(0,0,0,.5);
	font-weight: 500;
}
.menu > li > a:hover span, .menu > li a.active span {
	background: #BC8F8F;
}
.menu > li > ul li a:before{
	content: '▶';
	font-size: 8px;
	color: #bcbcbf;
	position: absolute;
	width: 1em;
	height: 1em;
	top: 0;
	left: -2.7em;
}
 
.menu > li > ul li:hover a,
.menu > li > ul li:hover a span,
.menu > li > ul li:hover a:before {
	color: #32373D;
}
 
 
.menu ul > li > a span {
	font-size: 0.857em; 
	display: inline-block;
	position: absolute;
	right: 1em;
	top: 50%; /
	background: #fff;
	border: 1px solid #d0d0d3;
	line-height: 1em;
	height: 1em;
	padding: .4em .7em;
	margin: -.9em 0 0 0; 
	color: #878d95;
	text-indent: 0;
	text-align: center;
	-webkit-border-radius: .769em;
	-moz-border-radius: 769em;
	border-radius: 769em;
	text-shadow: 0px 0px 0px rgba(255,255,255,.01));
}

Ma question est donc, comment faire pour que sous IE11, mes sprites s'affichent et que sous Firefox, mon menu ne se déroule pas à l'affichage de la page ?

vous remerciant d'avance de vos réponses,

Pierre