表格元素
表格元素 :在css技术出现之前,网页通常使用表格布局
后台管理系统中可能出现表格
表格不再适用于布局?表格的渲染速度过慢。
表格:table
表格标题:caption
表头:thead
表格主体:tbody
表尾:tfoot
表格行:tr
单元格:th(标题单元格),td
合并单元格:合并列:colspan=“”;
合并行:rowspan=“”
<table border="" cellspacing="" cellpadding="">
<caption>这是表格标题</caption>
<thead>
<tr><th>Header</th></tr>
<tr><td>Data</td></tr>
</thead>
<tbody>
<tr><th>Header</th></tr>
<tr><td>Data</td></tr>
</tbody>
<tfoot>
<tr><th>Header</th></tr>
<tr><td>Data</td></tr>
</tfoot>
</table>