文本居中

<center>markdown居中文本</center>

字体颜色

<font color=#FF0000> 你的字体</font>

图片居中

<div align=center>
<img src="图片地址" width="XXX" height="XXX" />
</div>

表中换行

<br>

表格中的列宽

<img width=200/> 
或者
 <div style="width:长度">单元格文本</div>
或者
<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>