Is it good to keep inside blank <td>?
Posted
by jitendra
on Stack Overflow
See other posts from Stack Overflow
or by jitendra
Published on 2010-03-24T08:56:54Z
Indexed on
2010/03/24
9:03 UTC
Read the original article
Hit count: 194
if this is the structure
<table cellspacing="0" cellpadding="0">
<tr>
<td>I don't need noting here then should i keep here always </td>
<td>item </td>
</tr>
<tr>
<td>model</td>
<td>one</td>
</tr>
<tr>
<td>model</td>
<td>two</td>
</tr>
<tr>
<td>model</td>
<td>three</td>
</tr>
</table>
How screen reader will read blank TD
, Is it semantically correct?
© Stack Overflow or respective owner