makdown文字图片居中字体颜色表格列宽

文本居中

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

字体颜色

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

图片居中

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

表格中换行

<br>

表格中的列宽

 <img width=200/> 
或者
 <div style="长度">单元格文本</div>
或者
<style>
table th:first-of-type {
     20%;
}
table th:nth-of-type(2) {
     30%;
}
table th:nth-of-type(3) {
     50%;
}
</style>
原文地址:https://www.cnblogs.com/still-smile/p/14900974.html