If there is a table with more than one header for a column, Lighthouse finds and reports it with a detailed scan operation.

How can data cells with no header match be corrected?
Note that each data cell found must be a table header cell aligned.
For example, the table below is problematic:
| Week | Total miles | Longest run | Long run pace |
|---|---|---|---|
| 1 | 14 | 5 | 12.30 |
Here are what you have to do to fix this coding:
- Remove
headers = '' Week ''from this table. - Add
"Scope". - Add the
<td>code snippet in first row too
Here the correct version of the coding:
| Week | Total miles | Longest run | Long run pace |
|---|---|---|---|
| 1 | 14 | 5 | 12.30 |