我有一个带有多个标题的html表,但我有一些场景,我希望显示一行,一些文本居中。 这是尝试:
<table border="1">
<tr>
<th>Name</th>
<th>Telephone</th>
<th>Telephone</th>
</tr>
<tr><td>No values</td></tr>
</table>
我想要的是没有值单元格在整行和文本居中。
答案 0 :(得分:3)
您要找的是colspan
属性
<table border="1">
<tr>
<th>Name</th>
<th>Telephone</th>
<th>Telephone</th>
</tr>
<tr>
<td colspan="3">No values</td>
</tr>
</table>