WordPress文章添加Table表格内容

wordpress 文章中有时需要用 table 表格的形式来表现,可以用如下代码。

WordPress文章添加Table表格内容

<table border="1" rules="all">
<thead>
<tr class="firstRow">
<th width="80">标题1</th>
<th width="100">标题2</th>
<th width="80">标题3</th>
<th width="80">标题4</th>
</tr>
</thead>
<tbody>
<tr>
<td>AAA</td>
<td>AAA</td>
<td>AAA</td>
<td>AAA</td>
</tr>
<tr>
<td>BBBBB</td>
<td>BBBBB</td>
<td>BBBBB</td>
<td>BBBBB</td>
</tr>
</tbody>
</table>