back to CanAdapt home

Two tier headings without headers and ids

Sales 2013 Sales 2014
Actual Budget Actual Budget
Compact cars $30,000 $50,000 $80,000 $100,000
Sedans $40,000 $60,000 $90,000 $120,000

Results

JAWS 15 or NVDA 2014.2 read it OK in FF and IE, but VoiceOver doesn't read the secont row of TH.

Code

<table width="200" border="1">
<tr>
<th rowspan="2"></th>
<th colspan="2" scope="col">Sales 2013</th>
<th colspan="2" scope="col">Sales 2014</th>
</tr>
<tr>
<th>Actual</th>
<th>Budget</th>
<th>Actual</th>
<th>Budget</th>
</tr>
<tr>
<th>Compact cars</th>
<td>$30,000</td>
<td>$50,000</td>
<td>$80,000</td>
<td>$100,000</td>
</tr>
<tr>
<th>Sedans</th>
<td>$40,000</td>
<td>$60,000</td>
<td>$90,000</td>
<td>$120,000</td>
</tr>
</table>