欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

a标签怎么去下划线以及实现点击前和点击后不变色_HTML/Xhtml_网页制作

程序员文章站 2022-03-28 09:44:25
...
复制代码
代码如下:

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;
}

这样定义样式表就可以实现你的功能了,不会样式表的话,可以把下面的代码加到你的页面中标签里:

复制代码
代码如下: