bonjour,

voici un code simplifié de ma page Web :
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
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
<head>
	<title>test</title>
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
 
	<style type="text/css">
body{
	min-width: 650px;
	margin:0;
	padding:0;
	border:none;
	font-family: Verdana, Arial, sans-serif;
	color:black;
	font-size:0.8em;
	background-color:black;
	height:100%; /* pour layout ie6 */
}
 
 
#corps{
	background-color:white;
	color: black;
	padding: 5px 15px;
}
 
.spacer { 
	clear: both; 
} 
 
.spacer hr{     
	display: none; 
}
 
 
/* ************************ */
.blocTab{
	clear: both;
	float:left;
	background-color:red;
	color:white;
}
 
.blocTab table{
	border-collapse:collapse;
	border:none;
}
 
.blocTab th{
	font-weight:bold;
	background-color:blue;
	color:white;
}
 
.blocTab th a{
	display:block;
	float:right;
 
	height:10px;
	width:10px;
 
	background-color:yellow;
}
 
.blocTab th, td{
	border:2px solid white;
	text-align:center;
}
 
 
.blocTab tr{
	background-color:green;
}
 
 
/* *********************************** */
.nextLastLink, .nextLink, .prevLink, .prevFirstLink{
	display:block;
	width: 20px;
	height: 20px;
	margin: 4px;
	padding:0;
 
	background-color:yellow;
}
 
.tabPageSelect td{
	color: white;
	margin:0;
	padding:0;
	background-color: green;
}
 
 
.blocTab .tabPageSelect table{
	margin: 2px auto;
}
 
 
 
    </style>
 
</head>
 
<body style="min-width: 840px;">
 
	<div id="corps">
 
		<div class="vid_float">
			<div class="blocTab">
				<h3>titre 1</h3>
				<table>
					<thead>
						<tr>
							<th style="width:3em;"><a href="#" title="titre 1"></a>1</th>
							<th style="width:11em;"><a href="#" title="titre 2"></a>2</th>
							<th style="width:7em;"><a href="#" title="titre 3"></a>3</th>
							<th style="width:9em;"><a href="#" title="titre 4"></a>5</th>
							<th style="width:4em;"><a href="#" title="titre 5"></a>6</th>
						</tr>
					</thead>
 
					<tbody>
						<tr>
							<td>a</td>
							<td></td>
							<td></td>
							<td></td>
							<td></td>
						</tr>
 
						<tr>
							<td>b</td>
							<td></td>
							<td></td>
							<td></td>
							<td></td>
						</tr>
 
						<tr>
							<td>c</td>
							<td></td>
							<td></td>
							<td></td>
							<td></td>
						</tr>
					</tbody>
				</table>
 
				<div class="tabPageSelect">
					<table>
						<tr>
							<td><a href="#" id="selectStart" title="première page" class="prevFirstLink"></a></td>
							<td><a href="#" id="selectPrev" title="page précédente" class="prevLink"></a></td>
							<td>
								<select id="selectPage">
								<option value="1">1</option>
								</select>
								/ <span id="nbPage">1</span>
							</td>
							<td><a href="#" id="selectNext" title="page suivante" class="nextLink"></a>	</td>
							<td><a href="#" id="selectEnd" title="dernière page" class="nextLastLink"></a></td>
						</tr>
					</table>
				</div>
 
			</div>
		</div>
		<div class="spacer"></div>
	</div>
 
 
</body>
</html>
Avec les versions antérieures à IE8, j'ai un bug d'affichage du tableau qui est dans [div.tabPageSelect] (la largeur du div parent [div.vid_float] est modifiée : je suppose que c'est un problème de layout mais je n'arrive pas à trouver le problème. Pouvez-vous m'aider ?

merci d'avance,