Code has been added to clipboard!

Deprecated scope Attribute in HTML td

Example
<table style="width: 100%;">
  <tr>
    <th scope="col">Apple</th>
    <th scope="col">Apple</th>
  </tr>
  <tr height="100%">
    <td scope="row">Apples are very healthy</td>
    <td scope="row">Apples are very healthy</td>
  </tr>
</table>