HTML <tfoot> 标签用于定义表示 HTML 表格页脚的行集。<tfoot> 标签必须包含一个或多个 <tr> 元素。
<tfoot> 标签与 <thead> 和 <tbody> 元素一起用作 HTML 表格 (<table>) 的子元素,其中 <thead> 定义表格标题,<tbody> 定义表格正文。
<tfoot> <tr></tr> <tr></tr> </tfoot>
以下是关于 HTML <tfoot> 标签的一些规范
展示 | 没有任何 |
开始标签/结束标签 | 开始和结束标记 |
用法 | HTML表格 |
<!DOCTYPE html> <html> <head> <title>HTML tfoot Tag</title> <style> table{ border-collapse: collapse; } thead,tfoot{ background-color:#3f87a6; } tbody{ background-color:#97ffff; } </style> </head> <body> <h1>Example of tfoot tag</h1> <table border="1" > <thead> <tr> <th>Items</th> <th>Quantity</th> <th>Expenditure</th> </tr> </thead> <tfoot> <tr> <th>Total</th> <th>90</th> <th>4175</th> </tr> </tfoot> <tbody> <tr> <td>Books</td> <td>5</td> <td>1500</td> </tr> <tr> <td>Drawing-Paper</td> <td>50</td> <td>800</td> </tr> <tr> <td>Marker</td> <td>35</td> <td>1875</td> </tr> </tbody> </table> </body> </html>
输出:
属性 | 属性值 | 描述 |
---|---|---|
align | right left center justify char | 它确定 <tfoot> 元素内内容的对齐方式。(HTML5 不支持) |
char | Character | 它指定 <tfoot> 元素内的内容与字符的对齐方式。(HTML5 不支持) |
charoff | Number | 它指定内容将与 char 属性指定的字符对齐的字符数。(HTML5 不支持) |
valign | top middle bottom baseline | 它决定了 <tfoot> 元素内内容的垂直对齐方式。(HTML5 不支持) |
<tfoot> 标签支持 HTML 中的 Global 属性。
<tfoot> 标签支持 HTML 中的 Event 属性。
元素 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
<tfoot> | Yes | Yes | Yes | Yes | Yes |