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 }

 

posted @ 2019-12-31 11:41  杨浪  阅读(6667)  评论(0编辑  收藏  举报