我知道浏览器对html非常灵活,但还有其他原因可以解决这个问题吗?
<table>
<tr>
<th>
Column 1
</th>
</tr>
<table>
答案 0 :(得分:4)
<th>
并不一定意味着它在桌子的头部。例如,您可能具有以下布局:
<table>
<tr>
<th>Name:</th>
<td>Tarquin Smith</td>
</tr>
<tr>
<th>Occupation:</th>
<td>Jovian Agent</td>
</tr>
</table>
答案 1 :(得分:2)
<thead>
包含行。长话短说它只是说那排是头排。我不使用它,但它只是使它更容易在你的CSS中使用它。例如:
<table>
<thead>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
</thead>
你的css可以说:thead {color:green;}
<th>
用于表格中的一个单元格,它所做的只是粗体并将文本置于其中。