Ce site disposera de fonctionnalités limitées pendant que nous effectuons des opérations de maintenance en vue de vous proposer un meilleur service. Si un article ne règle pas votre problème et que vous souhaitez poser une question, notre communauté d’assistance est prête à vous répondre via @FirefoxSupport sur Twitter, et /r/firefox sur Reddit.

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

Problem rendering a table

  • 2 réponses
  • 3 ont ce problème
  • 4 vues
  • Dernière réponse par cor-el

more options

I'm writing a table and Firefox doesn't render it correctly:

<table border="1" cellpadding="0" cellspacing="0" width='270'>
  <tr>
    <td width='20'>&nbsp;</td>
    <td width='3' height='172'></td>
    <td colspan='2' width='226'>226x172</td>
    <td width='8' height='172'></td>
    <td width='13'>&nbsp;</td>
  </tr>
  <tr>
    <td width='20'>&nbsp;</td>
    <td width='3' height='26'></td>
    <td width='136' height='26'>136x26</td>
    <td colspan='2' width='98' height='26'>98x26</td>
    <td width='13'>&nbsp;</td>
  </tr>
</table>

the 4th cell of the 2nd and 3rd row, infact, are rendered with same size while they are not.

This HTML code render correctly:

<table border="1" cellpadding="0" cellspacing="0" width='270'>
  <tr>
    <td width='20' height='1'></td>
    <td width='3'></td>
    <td width='136'></td>
    <td width='90'></td>
    <td width='8'></td>
    <td width='13'></td>
  </tr>
  <tr>
    <td width='20'>&nbsp;</td>
    <td width='3' height='172'></td>
    <td colspan='2' width='226'>226x172</td>
    <td width='8' height='172'></td>
    <td width='13'>&nbsp;</td>
  </tr>
  <tr>
    <td width='20'>&nbsp;</td>
    <td width='3' height='26'></td>
    <td width='136' height='26'>136x26</td>
    <td colspan='2' width='98' height='26'>98x26</td>
    <td width='13'>&nbsp;</td>
  </tr>
</table>

Can someone explain me why?

I'm writing a table and Firefox doesn't render it correctly:<br /> <br /> <pre><nowiki><table border="1" cellpadding="0" cellspacing="0" width='270'> <tr> <td width='20'>&nbsp;</td> <td width='3' height='172'></td> <td colspan='2' width='226'>226x172</td> <td width='8' height='172'></td> <td width='13'>&nbsp;</td> </tr> <tr> <td width='20'>&nbsp;</td> <td width='3' height='26'></td> <td width='136' height='26'>136x26</td> <td colspan='2' width='98' height='26'>98x26</td> <td width='13'>&nbsp;</td> </tr> </table></nowiki></pre> the 4th cell of the 2nd and 3rd row, infact, are rendered with same size while they are not. This HTML code render correctly:<br /> <br /> <pre><nowiki><table border="1" cellpadding="0" cellspacing="0" width='270'> <tr> <td width='20' height='1'></td> <td width='3'></td> <td width='136'></td> <td width='90'></td> <td width='8'></td> <td width='13'></td> </tr> <tr> <td width='20'>&nbsp;</td> <td width='3' height='172'></td> <td colspan='2' width='226'>226x172</td> <td width='8' height='172'></td> <td width='13'>&nbsp;</td> </tr> <tr> <td width='20'>&nbsp;</td> <td width='3' height='26'></td> <td width='136' height='26'>136x26</td> <td colspan='2' width='98' height='26'>98x26</td> <td width='13'>&nbsp;</td> </tr> </table></nowiki></pre> Can someone explain me why?

Modifié le par cor-el

Toutes les réponses (2)

more options

The wrong html is:

< table border="1" cellpadding="0" cellspacing="0" width='270'>

 < tr>
   < td width='20'> </td>
   < td width='3' height='172'></td>
   < td colspan='2' width='226'>226x172</td>
   < td width='8' height='172'></td>
   < td width='13'> </td>
 < /tr>
 < tr>
   < td width='20'> </td>
   < td width='3' height='26'></td>
   < td width='136' height='26'>136x26</td>
   < td colspan='2' width='98' height='26'>98x26</td>
   < td width='13'> </td>
 </tr>

</table>

While the good one is: < table border="1" cellpadding="0" cellspacing="0" width='270'>

 < tr>
   < td width='20' height='1'></td>
   < td width='3'></td>
   < td width='136'></td>
   < td width='90'></td>
   < td width='8'></td>
   < td width='13'></td>
 < /tr>
 < tr>
   < td width='20'> </td>
   < td width='3' height='172'></td>
   < td colspan='2' width='226'>226x172</td>
   < td width='8' height='172'></td>
   < td width='13'> </td>
 < /tr>
 < tr>
   < td width='20'> </td>
   < td width='3' height='26'></td>
   < td width='136' height='26'>136x26</td>
   < td colspan='2' width='98' height='26'>98x26</td>
   < td width='13'> </td>
 </tr>

</table>

more options

A good place to ask advice about web development is at the MozillaZine "Web Development/Standards Evangelism" forum.

The helpers at that forum are more knowledgeable about web development issues.
You need to register at the MozillaZine forum site in order to post at that forum.