HTML <table> 標(biāo)簽
所有瀏覽器都支持 <table> 標(biāo)簽。
定義和用法(推薦學(xué)習(xí):HTML入門教程)
<table> 標(biāo)簽定義 HTML 表格。
簡單的 HTML 表格由 table 元素以及一個(gè)或多個(gè) tr、th 或 td 元素組成。
tr 元素定義表格行,th 元素定義表頭,td 元素定義表格單元。
更復(fù)雜的 HTML 表格也可能包括 caption、col、colgroup、thead、tfoot 以及 tbody 元素。
實(shí)例
一個(gè)簡單的 HTML 表格,包含兩行兩列:
<html> <body> <table border="1"> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> </table> </body> </html>