Markdown 語法中,默認(rèn)的表格樣式為:每列等分,這樣不僅影響美觀,還會因為某列過長而把表格擠變形
解決辦法很簡單:在 md 文件中添加 css 樣式來即可
<style>
table th:nth-of-type(1){
width: 20%;
}
table th:nth-of-type(2){
width: 20%
;
}
table th:nth-of-type(3){
width: 60%;
}
</style>
*Java Reference Documentation*
| RELEASE | CODENAME | DOCUMENTATION |
| :-: | :-: | :-: |
| 10 | - | [JDK Documentation](https://docs.oracle.com/javase/10/)  |  [Java SE API](https://docs.oracle.com/javase/10/docs/api/)  |  Java EE API |