<tfoot>
优质
小牛编辑
128浏览
2023-12-01
描述 (Description)
HTML
标记用于向表中添加页脚。tfoot标签与tbody标签和thead标签一起用于确定表格的每个部分(页眉,页脚,正文)。例子 (Example)
<!DOCTYPE html>
<html>
<head>
<title>HTML tfoot Tag</title>
</head>
<body>
<table style = "width:100%" border = "1">
<thead>
<tr>
<td colspan = "4">This is the head of the table</td>
</tr>
</thead>
<tfoot>
<tr>
<td colspan = "4">This is the foot of the table</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
<tr>
...more rows here containing four cells...
</tr>
</tbody>
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
<tr>
...more rows here containing four cells...
</tr>
</tbody>
</table>
</body>
</html>
全局属性 (Global Attributes)
此标记支持 - HTML Attribute Reference描述的所有全局属性
具体属性 (Specific Attributes)
HTML
标记还支持以下附加属性 -属性 | 值 | 描述 |
---|---|---|
align | right left center justify char | Deprecated - 视觉对齐。 |
char | character | Deprecated - 指定要对齐文本的字符。 align =“char”时使用 |
charoff | 像素或% | Deprecated - 指定使用char属性指定的第一个字符的对齐偏移(以像素或百分比值表示)。 align =“char”时使用 |
valign | top middle bottom baseline | Deprecated - 垂直对齐。 |
事件属性 (Event Attributes)
此标记支持 - HTML Events Reference描述的所有事件属性
浏览器支持 (Browser Support)
Chrome | Firefox | IE | Opera | Safari | Android |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |