Skip to main content

HTML Guide

Free site validation

Find out what web pages on your sites are affected by HTML issues.

A table row was X columns wide and exceeded the column count established by the first row (Y).

Table rows on the same <table> element must have the same number of columns, which comes determined by the first tr row.

For example, this table is wrong as the first row defines 2 columns, while the second row tries to use 4 columns:

<table>
    <tr>
      <td>Liza</td>
    </tr>

    <tr>
      <td>Jimmy</td>
      <td>14</td>
    </tr>
</table>

Learn more:

Related W3C validator issues