英[fʊt] 美[fʊt]
n.腳;底部;英尺(=12 英寸或30。48 厘米);腳步
vt.走,踏
vt.& vi.結算,總計,共
第三人稱單數: foots 複數: feet 現在分詞: footing 過去式: footed 過去分詞: footed
html tfoot標籤 語法
作用:定義表格的頁腳(註腳或表註)。此標籤用於組合 HTML 表格中的表注內容。
說明:tfoot 元素應該與 thead 和 tbody 元素結合使用。 thead 元素用於將 HTML 表格中的表頭內容進行分組,而 tbody 元素則用於將 HTML 表格中的主體內容分組。
註解:如果您使用 thead、tfoot 以及 tbody 元素,您就必須使用全部的元素。它們的出現次序是:thead、tfoot、tbody,這樣瀏覽器就可以在收到所有資料前呈現頁腳了。您必須在 table 元素內部使用這些標籤。
html tfoot標籤 範例
<html> <head> <style type="text/css"> thead {color:green} tbody {color:blue;height:50px} tfoot {color:red} </style> </head> <body> <table border="1"> <thead> <tr> <th>Month</th> <th>Savings</th> </tr> </thead> <tbody> <tr> <td>January</td> <td>0</td> </tr> <tr> <td>February</td> <td></td> </tr> </tbody> <tfoot> <tr> <td>Sum</td> <td>0</td> </tr> </tfoot> </table> </body> </html>
執行實例 »
點擊 "執行實例" 按鈕查看線上實例