Bonjour,
Je suis en train de cr�er un site dans lequel le contenu est simplement organis� � travers une table dont voici la structure :

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
 
<table border="1" width="100%">
	<tr>
		<td rowspan="2" width="160" height="400">
		bla
		</td>
		<td width="230" height="200">
		bla
		</td>
 
		<td width="230" height="200">
		bla
		</td>
 
		<td rowspan="2" width="160" height="400">
		bla
		</td>
	</tr>
	<tr>
		<td colspan="2" rowspan="2" width="470" height="235">
		bla
		</td>
	</tr>
	<tr>
		<td height="35">
		bla
		</td>
 
		<td height="35">
		bla
		</td>
 
	</tr>
</table>
L'affichage est nikel sous Firefox mais IE s'obstine � aggrandir les deux <td> du haut au centre...J'ai beau "jouer" avec les differents attributs "height", mettre des valeurs en pourcentage, en pixels...autant Firefox r�agis logiquement autant je ne comprends pas ce qui coince avec IE...
Peut-�tre que j'ai mal compris l'utilisation des rowspan et colspan ?

Quelqu'un pourrait-il m'�clairer ?