表で強調表示されたテキストを 508 準拠にするにはどうすればよいですか? 現在、テキストを em タグで囲み、aria ラベルを追加して、背景が黄色であることを強調しています。この代替マークアップは、スクリーン リーダーによって読み取られていないため、準拠していないようです。
<table style="border: solid 1px black;">
<p>Search results for the term "will"</p>
<thead>
<th>first name</th>
<th>last name</th>
<th>occupation</th>
</thead>
<tbody>
<tr>
<td>Joe</td>
<td><em style="background-color: yellow; font-style: normal;" aria-label="highlighted search term">Will</em>iams-Harver</td>
<td>sales clerk</td>
</tr>
<tr>
<td><em style="background-color: yellow; font-style: normal;" aria-label="highlighted search term">Will</em></td>
<td>Stevens</td>
<td>truck driver</td>
</tr>
</tbody>
</table>