评论

收藏

[Html/CSS] a标签怎么去下划线以及实现点击前和点击后不变色

开发技术 开发技术 发布于:2021-09-15 17:28 | 阅读数:296 | 评论:0

代码如下:
a:link { 
font-size: 12px; 
color: #000000; 
text-decoration: none; 
} 
a:visited { 
font-size: 12px; 
color: #000000; 
text-decoration: none; 
} 
a:hover { 
font-size: 12px; 
color: #999999; 
text-decoration: underline; 
}
这样定义样式表就可以实现你的功能了,不会样式表的话,可以把下面的代码加到你的页面中<head></head>标签里:

代码如下:
<style type="text/css"> 
<!-- 
a:link { 
font-size: 12px; 
color: #000000; 
text-decoration: none; 
} 
a:visited { 
font-size: 12px; 
color: #000000; 
text-decoration: none; 
} 
a:hover { 
font-size: 12px; 
color: #999999; 
text-decoration: underline; 
} 
--> 
</style>
关注下面的标签,发现更多相似文章