a标签去除默认样式

 1 /*包含以下四种的链接*/
 2 a {
 3     text-decoration: none;
 4 }
 5 /*正常的未被访问过的链接*/
 6 a:link {
 7     text-decoration: none;
 8 }
 9 /*已经访问过的链接*/
10 a:visited {
11     text-decoration: none;
12 }
13 /*鼠标划过(停留)的链接*/
14 a:hover {
15     text-decoration: none;
16 }
17 /* 正在点击的链接*/
18 a:active {
19     text-decoration: none;
20 }
原文地址:https://www.cnblogs.com/yanglang/p/12123636.html