1.如何画表格?

合并行/列 <设置一个删一个多余的格子>
colspan="7" (横着的是 行,七个) ===》合并列 +输入框中的内容
rowspan="2" (竖着的是 列,两个) ===》合并行 +输入框中的内容
合并行列 <其他未设置的行列 多余的删除>
colspan="3" rowspan="2" +输入框中的内容
空格行列
colspan="3" +不输入内容就是空格
2.具体示例
<caption>第一个表格</caption>
<table border="1">
<thead>
<tr>
<th>困困</th>
<th>困困</th>
<th>困困</th>
</tr>
<tr>
<th>困困</th>
<th>困困</th>
<th>困困</th>
</tr>
<tr>
<th>困困</th>
<th>困困</th>
<th>困困</th>
</tr>
</thead>
</table>