首页 > 其他 > 详细

a标签去除默认样式

时间:2019-12-31 12:54:58      阅读:326      评论:0      收藏:0      [点我收藏+]
 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标签去除默认样式

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!