码迷,mamicode.com
首页 > 其他好文 > 详细

a标签去除默认样式

时间:2019-12-31 12:52:12      阅读:607      评论:0      收藏:0      [点我收藏+]

标签:cti   pre   标签   链接   nbsp   active   默认   code   四种   

 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 }

 

a标签去除默认样式

标签:cti   pre   标签   链接   nbsp   active   默认   code   四种   

原文地址:https://www.cnblogs.com/yanglang/p/12123636.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!