Bonjour,

je dois développer un site de tennis (projet pour l'école) et je rencontre actuellement un chtit problème. L'overflow semble ne pas être correctement traité par IE. Après maintes recherche, je viens demander votre aide.

Ci dessous, les informations nécessaires:

Exemple d'une page
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
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
<HTML>
<HEAD>
<TITLE>G01_Tennis - Liste des utilisateurs</TITLE>
	<LINK REL="stylesheet" HREF="./style.css">
	<SCRIPT language="javascript" src="./menu.js"></SCRIPT>
</HEAD>
<BODY>
	<DIV class="header">
		<DIV class="connexion">
			<A HREF="./PQI_UI_HTML_COOKIE.cookieDelete"><IMG SRC="/public/projet/img/logout.png" ALT="Déconnexion" border=0px /></A>
		</DIV>
	</DIV>
	<DIV class="main">
		<div class="menu">
			<BR>
			<UL  id="menuAcc">
			<LI><H4  id="menuPers" onclick="openMenu(this);">Gérer utilisateurs</H4><DIV><a href="PQI_UI_PERSONNE.liste_personne">Liste des utilisateurs</a><BR  /><a href="PQI_UI_PERSONNE.ajout_personne">Ajouter un utilisateur</a><BR  />et la tout le contenu <BR  />et la tout le contenu <BR  /></DIV>
			<LI><H4  id="menuConf" onclick="openMenu(this);">Configuration</H4><DIV><a href="PQI_UI_NIV_JEU.liste_niv_jeu">Niveau de jeu</a><BR  />et la tout le contenu <BR  />et la tout le contenu <BR  /></DIV>
			</UL>
		</div>
		<script language="javascript">
				var NomNav = navigator.appName;
 
				if (NomNav == "Microsoft Internet Explorer"){
					window.attachEvent( "onload",
					function (){
								openMenu(document.getElementById("menuPers"));
							},
							false );
				}
				else
				{
					window.addEventListener(
							"load",
							function (){
								openMenu(document.getElementById("menuPers"));
							},
							false );
				}
				</script>
		<DIV class="content">
			<TABLE  BORDER>
			<TR>
				<TH>PERS_NUM</TH>
				<TH>PERS_TYPE</TH>
				<TH>PERS_NOM</TH>
				<TH>PERS_PRENOM</TH>
				<TH>PERS_SEXE</TH>
				<TH>PERS_LOG</TH>
				<TH>PERS_MDP</TH>
				<TH>PERS_RUE</TH>
				<TH>PERS_VILLE</TH>
				<TH>PERS_CP</TH>
				<TH>PERS_DATEN</TH>
				<TH>PERS_EMAIL</TH>
				<TH>ADH_CLASS</TH>
				<TH>ENTR_DATEEMB</TH>
				<TH>ENTR_SAL</TH>
				<TH>NIV_CODE</TH>
				<TH>NIV_LIB</TH>
			</TR>
			<TR>
				<TD ALIGN="LEFT">1</TD>
				<TD ALIGN="LEFT">R</TD>
				<TD ALIGN="LEFT">ADMIN</TD>
				<TD ALIGN="LEFT">ADMIN</TD>
				<TD ALIGN="LEFT">F</TD>
				<TD ALIGN="LEFT">admin</TD>
				<TD ALIGN="LEFT">21232F297A57A5A743894A0E4A801FC3</TD>
				<TD ALIGN="LEFT">12 rue des lilas</TD>
				<TD ALIGN="LEFT">BELFORT</TD>
				<TD ALIGN="LEFT">90000</TD>
				<TD ALIGN="LEFT">11-MAY-79</TD>
				<TD ALIGN="LEFT">julie.dupond@free.fr</TD>
				<TD ALIGN="LEFT"></TD>
				<TD ALIGN="LEFT"></TD>
				<TD ALIGN="LEFT"></TD>
				<TD ALIGN="LEFT">DEB</TD>
				<TD ALIGN="LEFT">débutant</TD>
			</TR>
			<TR>
				<TD ALIGN="LEFT">2</TD>
				<TD ALIGN="LEFT">A</TD>
				<TD ALIGN="LEFT">DUPOND</TD>
				<TD ALIGN="LEFT">Julie</TD>
				<TD ALIGN="LEFT">F</TD>
				<TD ALIGN="LEFT">jdupond</TD>
				<TD ALIGN="LEFT">7E9F809497DD4A531E061160069EE841</TD>
				<TD ALIGN="LEFT">12 rue des sauvages</TD>
				<TD ALIGN="LEFT">BELFORT</TD>
				<TD ALIGN="LEFT">90000</TD>
				<TD ALIGN="LEFT">11-MAY-79</TD>
				<TD ALIGN="LEFT">julie.dupond@free.fr</TD>
				<TD ALIGN="LEFT"></TD>
				<TD ALIGN="LEFT"></TD>
				<TD ALIGN="LEFT"></TD>
				<TD ALIGN="LEFT">DEB</TD>
				<TD ALIGN="LEFT">débutant</TD>
			</TR>
			</TABLE>
		</DIV>
		<DIV class="footer">
		</DIV>
	</DIV>
</BODY>
</HTML>
et la, la 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
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/*
 * PAGE
 */
body
{
    background: 		white url(../img/diagonals.png);
    background-attachment: fixed;
    font-family: 		Georgia, "Bookman Old Style", Bookman, "New Century Schoolbook", "Bookman Antiqua", Palatino, "Utopia",  "New York", "Times New Roman",  Times,  serif;
}
 
 
 
/*
 * Affiche le header
 */
.header
{
	margin-left: 		44px;
	margin-right: 		60px;
	background:	 		url(../img/banner.png);
	height: 			200px;
}
 
/*
 * Affiche le footer 
 */
.footer
{
	background-color: 	#368b2e;
	height: 			100px;
	clear:				both;
}
 
/*
 * Div a droite du menu. (fond blanc)
 */
.main
{
	clear: 				right;
	margin-left: 		60px;
	margin-right: 		60px;
	background: 		url(../img/fondContent.png);
	_width:				100%;
}
 
/*
 * Div du menu
 */ 
.menu
{
	float: 				left;
	text-align: 		Left;
	font-family: 		Techno, "Haettenschweiler", Charcoal, Impact, "Arial Black", Verdana, Lucida, Helvetica, fantaisy;
	font-size: 			12pt;
	width: 				200px;
	line-height: 		1.2;
	margin-left:		-25px;
	padding:			0px;
}
 
.menu a:link
{
	color: 				#ffffff;
	text-decoration: 	none;
}
 
.menu a:visited
{
	color: 				#ffffff;
	text-decoration: 	none;
}
 
.menu a:hover
{ 
	color: 				#FEED01;
	text-decoration: 	underline;
}
 
#menuAcc li
{
	list-style-type:	none; 
	border:				none;
	width:				200px;
	height:				20px;
	overflow:			hidden;
	padding:			0px;
}
 
#menuAcc li h4
{
	list-style-type:	none;
	font-family: 		Arial;
	color: 				#FEED01;
	padding:			0px;
	margin:				0px;
	cursor: 			pointer;
}
 
 
 
/*
 * Div de connexion
 */
.connexion
{
	float: 				right;
	margin-top:			30px;
	margin-right:		20px;
	margin-left:		220px;
	color:				red;
	font-weight: 		bold;
}
 
.connexion input#login
{
	color: 				#6C7170;
	font-style: 		italic;
	font-weight: 		none;
}
 
.connexion a img
{ 
	border: 			2px transparent dotted;
}
 
.connexion a:hover img
{ 
	border:				2px #336699 dotted;
}
 
 
/*
 * Div de contenu
 */
.content
{
	background-color: 	#ffffff;
	margin-left: 		215px;
	margin-bottom: 		25px;
	overflow: 			auto;
}
 
.content table
{ 
	margin:0 auto; 
}
 
 
.content a:link
{
	color: 				#114714;
	text-decoration: 	none;
	font-weight: 		bold;
}
 
.content a:visited
{
	color: 				#7ed483;
	text-decoration: 	none;
}
 
.content a:hover
{ 
	color: #7ed483;
	text-decoration: 	underline;
}
 
 
 
/*
 * Pour le DIV ERREUR
 */
.boxcontent a:link{color: #4e2d00; text-decoration: none;}
.boxcontent a:visited{ color: #4e2d00; text-decoration: none;}
.boxcontent a:hover{	color: #4e2d00; text-decoration: underline;}
 
.erreur {background: transparent; width:80%; margin-left:120px;}
.erreur h1, .erreur p {margin:0 10px;}
.erreur h1 {font-size:2em; color:#fff; letter-spacing:1px;}
.erreur p {padding-bottom:0.5em;}
 
.erreur .top, .erreur .bottom {display:block; background:transparent; font-size:1px;}
.erreur .b1, .erreur .b2, .erreur .b3, .erreur .b4 {display:block; overflow:hidden;}
.erreur .b1, .erreur .b2, .erreur .b4 {height:1px;}
.erreur .b2, .erreur .b3 {background:#d66; border-left:1px solid #fff; border-right:1px solid #fff;}
.erreur .b4 {background:#d66; border-left:4px solid #fff; border-right:4px solid #fff;}
 
.erreur .b1 {margin:0 2px; background:#fff;}
.erreur .b2 {margin:0 1px; border-width:0 1px;}
.erreur .b3 {height:2px; margin:0;}
.erreur .b4 {margin:0 2px;}
 
.erreur .boxcontent {display:block; background:#d66; border-left:1px solid #fff; border-right:1px solid #fff; margin:0 5px;}
 
 
.succes {background: transparent; width:80%; margin-left:120px;}
.succes h1, .succes p {margin:0 10px;}
.succes h1 {font-size:2em; color:#fff; letter-spacing:1px;}
.succes p {padding-bottom:0.5em;}
 
.succes .top, .succes .bottom {display:block; background:transparent; font-size:1px;}
.succes .b1, .succes .b2, .succes .b3, .succes .b4 {display:block; overflow:hidden;}
.succes .b1, .succes .b2, .succes .b4 {height:1px;}
.succes .b2, .succes .b3 {background:#9edd65; border-left:1px solid #fff; border-right:1px solid #fff;}
.succes .b4 {background:#9edd65; border-left:4px solid #fff; border-right:4px solid #fff;}
 
.succes .b1 {margin:0 2px; background:#fff;}
.succes .b2 {margin:0 1px; border-width:0 1px;}
.succes .b3 {height:2px; margin:0;}
.succes .b4 {margin:0 2px;}
 
.succes .boxcontent {display:block; background:#9edd65; border-left:1px solid #fff; border-right:1px solid #fff; margin:0 5px;}
 
 
/*
* css pour le planning
*/
 
#planning {
border:3px solid #dcdcdc;
border-collapse:collapse;
width:100%;
margin:auto;
}
 
#planning th{
font-family:monospace;
border:1px dotted #dcdcdc;
padding:5px;
background-color:#EFF6FF;
}
 
#planning td{
font-family:monospace;
border:1px dotted #dcdcdc;
padding:5px;
}
 
#planning .horaire{
width:10%;
background-color:#EFF6FF;
}
 
#planning .vide{
background-color:#90EE90;
}
 
#planning .reserver{
background-color:#D3D3D3;
}
 
#planning .reserver_me{
background-color:#FFFACD;
}
 
#planning .match{
background-color:#FFA07A;
}
 
#planning .entr{
background-color:#FAF0E6;
}
 
#planning .entr_me{
background-color:#FFDEAD;
}
Merci pour votre aide