a标签怎么去下划线以及实现点击前和点击后不变色
复制代码代码如下:
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;
}
这样定义样式表就可以实现你的功能了,不会样式表的话,可以把下面的代码加到你的页面中标签里:
复制代码代码如下:
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。
本文地址:/web/HTML/71342.html