html - th tags as footers for td cells -
is semantic wrong use 'th' tag alternative multiple footers in 'td' cells?
example http://jsfiddle.net/marcelozep/dwsrs/
<table border="0"> <tr> <td><a href='http://mpn.p.ht/wp_br2/?cat=7'><img src = "http://mpn.p.ht/wp_br2/wp-content/themes/snapshot/images/m/polos_manga_curta.jpg" /> </a> </td> <td><a href='http://mpn.p.ht/wp_br2/?cat=8'><img src = "http://mpn.p.ht/wp_br2/wp-content/themes/snapshot/images/m/polos_manga_longa.jpg" /> </a> </td> <td><a href='http://mpn.p.ht/wp_br2/?cat=9'><img src = "http://mpn.p.ht/wp_br2/wp-content/themes/snapshot/images/m/camisetas.jpg" /></a></td> </tr> <tr> <th><a href='http://mpn.p.ht/wp_br2/? cat=7'>pólos manga curta</a></th> <th><a href='http://mpn.p.ht/wp_br2/? cat=8'>pólos manga longa</a></th> <th><a href='http://mpn.p.ht/wp_br2/? cat=9'>camisetas</a></th> </tr> <tr> <td><a href='http://mpn.p.ht/wp_br2/?cat=10'><img src = "http://mpn.p.ht/wp_br2/wp-content/themes/snapshot/images/m/calcas.jpg" /></a> </td> <td><a href='http://mpn.p.ht/wp_br2/?cat=11'><img src = "http://mpn.p.ht/wp_br2/wp-content/themes/snapshot/images/m/bermudas.jpg" /></a> </td> <td><a href='http://mpn.p.ht/wp_br2/?cat=12'><img src = "http://mpn.p.ht/wp_br2/wp-content/themes/snapshot/images/m/jaquetas.jpg" /></a> </td> </tr> <tr> <th><a href='http://mpn.p.ht/wp_br2/? cat=10'>calças</a></th> <th><a href='http://mpn.p.ht/wp_br2/? cat=11'>bermudas</a></th> <th><a href='http://mpn.p.ht/wp_br2/? cat=12'>jaquetas</a></th> </tr> <tr> <td><a href='http://mpn.p.ht/wp_br2/?cat=13'><img src = "http://mpn.p.ht/wp_br2/wp-content/themes/snapshot/images/m/cardigans.jpg" /></a> </td> <td><a href='http://mpn.p.ht/wp_br2/?cat=14'><img src = "http://mpn.p.ht/wp_br2/wp-content/themes/snapshot/images/m/blusoes.jpg" /></a> </td> <td><a href='http://mpn.p.ht/wp_br2/?cat=15'><img src = "http://mpn.p.ht/wp_br2/wp-content/themes/snapshot/images/m/acessorios.jpg" /></a> </td> </tr> <tr> <th><a href='http://mpn.p.ht/wp_br2/? cat=13'>cardigans</a></th> <th><a href='http://mpn.p.ht/wp_br2/? cat=14'>blusões</a></th> <th><a href='http://mpn.p.ht/wp_br2/? cat=15'>acessórios</a></th> </tr> </table>
it´s table 3 columns , 3 rows. i´ve tried use 'tfoot' each row, really, doesn´t make sense.
the table can done 'th' tags below 'td' cell?
thanks.
the th
element has been defined cell containing header information. vague, examples , practices suggest should header column or or row, not individual cell. deviating may confuse users of assistive software may read th
elements in manner corresponds simple model.
there no need using th
, when can use td
instead , style desired. using <td align=center><b>...</b></td>
better misrepresenting content column or row header.
what should use markup here different issue , cannot constructively solved without more information overall structure.
Comments
Post a Comment