一个简单的 HTML 表格,包含两行和四个表格单元格:
<table>
<tr>
<td>Cell A</td>
<td>Cell B</td>
</tr>
<tr>
<td>Cell C</td>
<td>Cell D</td>
</tr>
</table>
亲自试一试 »
下面有更多 "亲自试一试" 示例。
这个<td>
标签定义 HTML 表格中的标准数据单元格。
HTML 表格有两种单元格:
<td>
元素)文本在<td>
默认情况下,元素是常规且左对齐的。
默认情况下,<th> 元素中的文本为粗体且居中。
Element | |||||
---|---|---|---|---|---|
<td> | Yes | Yes | Yes | Yes | Yes |
Attribute | Value | Description |
---|---|---|
colspan | number | Specifies the number of columns a cell should span |
headers | header_id | Specifies one or more header cells a cell is related to |
rowspan | number | Sets the number of rows a cell should span |
这个<td>
标签还支持HTML 中的全局属性。
这个<td>
标签还支持HTML 中的事件属性。
如何对齐 <td> 内的内容(使用 CSS):
<table style="width:100%">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td style="text-align:right">$100</td>
</tr>
<tr>
<td>February</td>
<td style="text-align:right">$80</td>
</tr>
</table>
亲自试一试 »
如何向表格单元格添加背景颜色(使用 CSS):
<table>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td style="background-color:#FF0000">January</td>
<td style="background-color:#00FF00">$100</td>
</tr>
</table>
亲自试一试 »
如何设置表格单元格的高度(使用 CSS):
<table>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td style="height:100px">January</td>
<td style="height:100px">$100</td>
</tr>
</table>
亲自试一试 »
如何指定表格单元格中不自动换行(使用 CSS):
<table>
<tr>
<th>Poem</th>
</tr>
<tr>
<td style="white-space:nowrap">Never increase, beyond what is necessary, the number of entities required to explain anything</td>
</tr>
</table>
亲自试一试 »
如何垂直对齐 <td> 内的内容(使用 CSS):
<table style="width:50%;">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr style="height:100px">
<td style="vertical-align:bottom">January</td>
<td style="vertical-align:bottom">$100</td>
</tr>
</table>
亲自试一试 »
如何设置表格单元格的宽度(使用 CSS):
<table style="width:100%">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td style="width:70%">January</td>
<td style="width:30%">$100</td>
</tr>
</table>
亲自试一试 »
如何创建表头:
<table>
<tr>
<th>Name</th>
<th>Email</th>
<th>Phone</th>
</tr>
<tr>
<td>John Doe</td>
<td>john.doe@example.com</td>
<td>123-45-678</td>
</tr>
</table>
亲自试一试 »
如何创建带有标题的表格:
<table>
<caption>Monthly savings</caption>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</table>
亲自试一试 »
如何定义跨越一行或多列的表格单元格:
<table>
<tr>
<th>Name</th>
<th>Email</th>
<th colspan="2">Phone</th>
</tr>
<tr>
<td>John Doe</td>
<td>john.doe@example.com</td>
<td>123-45-678</td>
<td>212-00-546</td>
</tr>
</table>
亲自试一试 »
HTML 教程:HTML 表格
HTML DOM 参考:表数据对象
CSS 教程:CSS 表
大多数浏览器都会显示<td>
具有以下默认值的元素:
td {
display: table-cell;
vertical-align: inherit;
}
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!