我正在尝试为跨越所有列的每个表行创建一个标头,并且像块元素一样。表格行分隔符,如果您愿意,但带有文本。 我尝试在行中使用TH,但它的行为类似于普通单元格。我希望它的行为类似于跨越行中所有单元格的块元素,而不是作为thead单元格的单元格计算。 有没有办法实现这个目标?
因为该表是可排序的,所以我不想在每行添加另一个带有colspan =“2”的tr。
<table>
<thead>
<tr>
<th>col1</th>
<th>col2</th>
<tr>
</thead>
<tbody>
<tr>
<th>This th should span the two cols as a header</th>
<td>coll 1 data</td>
<td>coll 2 data</td>
</tr>
<tr>
<th>This th should span the two cols as a header</th>
<td>coll 1 data</td>
<td>coll 2 data</td>
</tr>
</tbody>
</table>