Skip to main content

HTML Guide

Start tag “br” seen in “table”.

A <br> element has been found in an invalid place within a <table> element.

For example, the following table has an invalid <br> between two <tr>, but the <br> that appears inside a <td> is valid.

<table>
  <tr>
    <th>Item</th>
    <th>Description</th>
  </tr>
  <!-- The following br is invalid -->
  <br>
  <tr>
    <td>Book</td>
    <td>
      <!-- The br in the following line is valid -->
      Title: HTML & CSS<br>
      Author: John Duckett
    </td>
  </tr>
</table>

Learn more:

Related W3C validator issues