Bonjour,


J'ai un problème d'affichage de colonnes avec Firefox que je parviens pas à m'expliquer. Il y a souvent des différences entre navigateurs qui sont corrigibles en réalisant des css appropriés à ie et gecko, mais là c'est très basique la mise en forme d'un tableau.

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
 
<hr width="950">
<div align="center">
<div id="tableau750fieldset">
<fieldset>
<table width="750" border="0" align="center">
  <tr>
    <td width="200" class="texteGraspourFiche">Id client : </td>
    <td class="texteNormalpourFiche"><?php echo $id_client; ?></td>
  </tr>
  <tr>
    <td width="200" class="texteGraspourFiche">Id Satge : </td>
    <td class="texteNormalpourFiche"><?php echo $id_satge; ?></td>
  </tr>
  <tr>
    <td width="200" class="texteGraspourFiche">Prénom : </td>
    <td class="texteNormalpourFiche"><?php echo $prenom; ?></td>
  </tr>
  <tr>
    <td width="200" class="texteGraspourFiche">Nom : </td>
    <td class="texteNormalpourFiche"><?php echo $nom; ?></td>
  </tr>  
  <tr>
    <td width="200" class="texteGraspourFiche">Adresse : </td>
    <td class="texteNormalpourFiche"><?php echo $adresse; ?></td>
  </tr>    
  <tr>
    <td width="200" class="texteGraspourFiche">Ville : </td>
    <td class="texteNormalpourFiche"><?php echo $ville; ?></td>
  </tr>   
  <tr>
    <td width="200" class="texteGraspourFiche">Cp : </td>
    <td class="texteNormalpourFiche"><?php echo $cp; ?></td>
  </tr>    
  <tr>
    <td width="200" class="texteGraspourFiche">Telephone: </td>
    <td class="texteNormalpourFiche"><?php echo $telephone; ?></td>
  </tr>
  <tr>
    <td width="200" class="texteGraspourFiche">E-mail: </td>
    <td class="texteNormalpourFiche"><?php echo $email; ?></td>
  </tr>  
  <tr>
    <td width="200" class="texteGraspourFiche">Date d'inscription: </td>
    <td class="texteNormalpourFiche"><?php echo $date_inscription; ?></td>
  </tr>    
 
</table>
Le résultat dans ie est ce que j'attends deux colonnes. Dans Firefox, les chanps empilés les us sur les autres....

Quelqu'un a-t-il une suggestion.
Merci d'avance