0

我有一个带有多个标题的 html 表,但我有一些场景希望显示单行,一些文本居中在中间。这是尝试:

<table border="1">
<tr>
  <th>Name</th>
  <th>Telephone</th>
  <th>Telephone</th>
</tr>
<tr><td>No values</td></tr>
</table>

我想要的是没有值单元格位于整行并且文本居中。

4

1 回答 1

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>
于 2013-05-02T12:25:46.250 回答