Bonjour,
Je suis en train de créer un site dans lequel le contenu est simplement organisé à travers une table dont voici la structure :
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...
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>
Peut-être que j'ai mal compris l'utilisation des rowspan et colspan ?
Quelqu'un pourrait-il m'éclairer ?
Partager