HTML5 <table> 标签
定义和用法
<table> 标签定义 HTML 表格。
一个简单的 HTML 表格包括 table 元素,一个或多个 tr、th 以及 td 元素。
tr 元素定义表格行,th 元素定义表头,td 元素定义表格单元。
更复杂的 HTML 表格也可能包含 caption, col, colgroup, thead, tfoot, tbody 等元素。
实例
简单的 HTML 表格,包含两列两行:
<table border="1"> <tr> <th>月份</th> <th>存款</th> </tr> <tr> <td>一月</td> <td>1000 元</td> </tr> </table>
浏览器支持
所有主流浏览器都支持 <table> 标签。
HTML 4.01 与 HTML 5 之间的差异
在 HTML5 中,仅支持 "border" 属性,并且只允许使用值 "" 或 "1"。
属性
属性 | 值 | 描述 |
---|---|---|
border |
|
规定表格单元是否拥有边框。 |
cellpadding | pixels | HTML5 中不支持。 |
cellspacing | pixels | HTML5 中不支持。 |
frame |
|
HTML5 中不支持。 |
rules |
|
HTML5 中不支持。 |
summary | text | HTML5 中不支持。 |
width |
|
HTML5 中不支持。 |