1、插入图片
![图片描述](图片地址)
2、表格操作
2.1书写表格
# 第一行为表头;第二行为对齐方式:- 表示居中对齐;:- 表示左对齐;-: 表示右对齐;第三行为内容
表头1 | 表头2 | 表头3
- | - | -
内容1 | 内容2 | 内容3 |
2.2表格内换行
<br>
标题业内导航:
[点击跳转](#aaa)
<h3 id="aaa">跳转的地方</h3>
例如:
点击跳转
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
跳转的地方
. .…
…
.
.
.
.
如何去掉超链接的下划线?
在md文档的头部加上下面代码
<style type="text/css"> <!-- a:link { text-decoration: none;color: blue} a:active { color: blue} a:hover { text-decoration:underline;color: red} a:visited { text-decoration: none;color: none} --> </style>
- a:link 指正常的未被访问过的链接,blue 文字为兰色。
- a:active 指正在点的链接。
- a:hover 指鼠标在链接上,red 文字为红色。
- a:visited 指已经访问过的链接,black 文字为黑色。
- text-decoration 是文字修饰效果的意思。
none 参数表示超链接文字不显示下划线。
underline 参数表示超链接的文字有下划线。