Markdown(四)-表格
2019-08-17 本文已影响0人
肖旭晖
- 一、 极简方式
姓名|性别|年龄
-|-|-
张三 | 男 | 20 |
李四 | 男 | 21 |
王五 | 男 | 22 |
姓名 | 性别 | 年龄 |
---|---|---|
张三 | 男 | 20 |
李四 | 男 | 21 |
王五 | 男 | 22 |
- 二、居中对齐
姓名|性别|年龄
:-:|:-:|:-:
张三 | 男 | 18
李四 | 男 | 18
姓名 | 性别 | 年龄 |
---|---|---|
张三 | 男 | 18 |
李四 | 男 | 18 |
- 三、左右对齐
姓名 | 性别 | 年龄
:- | :-: | -:
张三 | 男 | 18
李四 | 男 | 19
姓名 | 性别 | 年龄 |
---|---|---|
张三 | 男 | 18 |
李四 | 男 | 19 |
|表格分割线
- 默认左对齐
:- 左对齐
:-: 居中对齐
-: 右对齐
- 四、 使用html表格
<table>
<thead>
<tr>
<th style="width:200px;background-color:red">姓名</th>
<th style="width:200px;background-color:red">性别</th>
<th style="width:200px;background-color:red">年龄</th>
</tr>
</thead>
<tbody>
<tr>
<th>张三</th>
<th>男</th>
<th>18</th>
</tr>
<tr>
<th>王五</th>
<th>男</th>
<th>19</th>
</tr>
</tbody>
</table>
Snip20190817_1.png
PS:由于简书不支持html表格图,所以显示不了,有道词典,github都支持