简洁的方法在Typecho文章中插入表格,那就是使用html语句。
下面就是用html语句生成的代码
| 1 | 2 | 3 |
|---|---|---|
| 4 | 5 | 6 |
| 7 | 8 | 9 |
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th align="center">1</th>
<th align="center">2</th>
<th align="center">3</th>
</tr>
</thead>
<tbody>
<tr>
<td align="center">4</td>
<td align="center">5</td>
<td align="center">6</td>
</tbody>
</tr>
<tr>
<tbody>
<td align="center">7</td>
<td align="center">8</td>
<td align="center">9</td>
</tr>
</tbody>
</table>发布时间
发布时间 2023-10-26 00:40