Markdown 技巧:改变表格宽度(列宽)

在 Markdown 表格前面加入下面的代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<style>
table th:first-of-type {
width: 20%;
}
table th:nth-of-type(2) {
width: 30%;
}
table th:nth-of-type(3) {
width: 50%;
}
</style>


| A列 | B列 | C列 |
| :---| :--- :| ---: |
| 列宽 = 10% 行宽| 列宽 = 30% 行宽 |列宽 = 60% 行宽 |

效果如下:

A 列 B 列 C 列
列宽 = 10% 行宽 列宽 = 30% 行宽 列宽 = 60% 行宽