例如: 点击跳转
.
. . . . . . . . . . . . . . . . . .
… … .
. . .
在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 参数表示超链接的文字有下划线。