我总是看到th标签只用在表的第一行。有没有一些具体的原因,为什么它不能用于在最左边的列创建“左”标题。这是不好的形式,还是这样呢。
基本上,一个表的顶部行和最左边的列,其中最左边的方块是空的。
例如
<table> <tr> <th><!--empty--></th> <th>Top 1</th> <th>Top 2</th></tr> <tr> <th>LeftHeader?</th> <td>data1</td> <td>data2</td></tr> </table>
解决方法
但是,当使用< thead>它必须是第一行。这是有效的:
<table> <thead> <tr> <td>0,0</td><td>1,0</td><td>2,0</td> </tr> </thead> <tr> <th>0,1</th><th>1,1</th><th>2,1</th> </tr> </table>
但这不是:
<table> <tr> <td>0,0</td> </tr> <thead> <tr> <th>0,1</th> </tr> </thead> </table>
HTML无效,您可以使用the w3C markup validation service进行双重检查,但在此之前,您必须添加<!DOCTYPE>声明和其他有效的HTML文档。