Table header elements should always have visible text. Ensure that table headers can be used by screen reader users.
Table header elements should have visible text that describes the purpose of the row or column, which benefits both sighted and screen reader users.
Developers should check all table header elements to ensure they have visible text.
<table><tr><th></th></tr></table><table><tr><th aria-label="Student Name"></th></tr></table>
Copy