表格标签:table tr td th caption
table:表格
<table></table>
属性:border(边框)、width(宽度:默认宽度为内容宽度)、cellpadding(边距、单元格内内容与单元格的距离)、cellspacing(单元格与单元格的距离)
tr:行
属性:width(宽度)、heighth(高度)、align(对齐方式)
td:行
属性:width(宽度)、heighth(高度)、align(对齐方式)
合并单元格:1、横向合并:属性为cospan(向右合并)属性值包含自身:2、3....
2、垂直合并:属性为rowspan(向下合并)属性值包含自身:2、3....
th:表头
caption:表格标题(与tr同级)