Skip to main content
HTML Validation

Start tag “br” seen in “table”.

About This HTML Issue

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>

Last reviewed: March 31, 2025

Was this guide helpful?

Find issues like this automatically

Rocket Validator scans thousands of pages in seconds, detecting HTML issues across your entire site.

Ready to validate your sites?
Start your free trial today.