web-dev-qa-db-fra.com

Qu'est-ce qui remplace cellpadding, cellpacing, valign et aligner dans les tableaux HTML5?

Dans Visual Studio, je vois ces avertissements:

  • Validation (HTML 5): l'attribut 'cellpadding' n'est pas un attribut valide de l'élément 'table'.
  • Validation (HTML 5): l'attribut 'cellspacing' n'est pas un attribut valide de l'élément 'table'.
  • Validation (HTML 5): l'attribut 'valign' n'est pas un attribut valide de l'élément 'td'.
  • Validation (HTML 5): l'attribut 'align' n'est pas un attribut valide de l'élément 'td'.

S'ils ne sont pas des attributs valides dans HTML5, qu'est-ce qui les remplace dans CSS?

305
Code Maverick
/* cellpadding */
th, td { padding: 5px; }

/* cellspacing */
table { border-collapse: separate; border-spacing: 5px; } /* cellspacing="5" */
table { border-collapse: collapse; border-spacing: 0; }   /* cellspacing="0" */

/* valign */
th, td { vertical-align: top; }

/* align (center) */
table { margin: 0 auto; }
475
drudge

Cela devrait résoudre votre problème:

td {
    /* <http://www.w3.org/wiki/CSS/Properties/text-align>
     * left, right, center, justify, inherit
     */
    text-align: center;
    /* <http://www.w3.org/wiki/CSS/Properties/vertical-align>
     * baseline, sub, super, top, text-top, middle,
     * bottom, text-bottom, length, or a value in percentage
     */
    vertical-align: top;
}
70
Cole Johnson

Sur une table particulière

<table style="border-collapse: separate; border-spacing: 10px;" >
    <tr>
      <td>Hi</td>
      <td>Hello</td>
    <tr/>
    <tr>
      <td>Hola</td>
      <td>Oi!</td>
    <tr/>
</table>
12
Xtian11

Alternativement, peut utiliser pour une table particulière

 <table style="width:1000px; height:100px;">
    <tr>
        <td align="center" valign="top">Text</td> //Remove it
        <td class="tableFormatter">Text></td>
    </tr>
</table>

Ajouter ce css dans un fichier externe

.tableFormatter
{
width:100%;
vertical-align:top;
text-align:center;
}
3
JaiSankarN