Skip to content

markdown

html表格合并

标题1标题2
内容1
内容1
内容2内容3
内容4
html
//代码
<table>
<thead>
<tr>
<th>标题1</th>
<th>标题2</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="2">内容1</td>
</tr>
<tr>
<td>内容1</td>
</tr>
<tr>
<td rowspan="2">内容2</td>
<td>内容3</td>
</tr>
<tr>
<td>内容4</td>
</tr>
</tbody>
</table>

Released under the MIT License.