首页
技术
登录
6mi
u
盘
搜
搜 索
技术
html去除a标签点击时下划线
html去除a标签点击时下划线
技术
2022-07-15
74
html代码:
<a href=
"#"
>这里是A标签</a>
CSS样式:
a:link
{
text-decoration
:
none
;
}
/* 指正常的未被访问过的链接*/
a:visited
{
text-decoration
:
none
;
}
/*指已经访问过的链接*/
a:hover
{
text-decoration
:
none
;
}
/*指鼠标在链接*/
}
a:active
{
text-decoration
:
none
;
}
/* 指正在点的链接*/
转载请注明原文地址:https://ipadbbs.8miu.com/read-26721.html
最新回复
(
0
)