如何删除htm中链接文本的下划线?

时间:2020-04-07 15:43:38

标签: html hyperlink

Google

我要删除链接文本的下划线

3 个答案:

答案 0 :(得分:1)

a {
    text-decoration:none;
} /*use this*/

答案 1 :(得分:0)

使用CSS:

a {
    text-decoration: none;
}

您还可以添加:

a:hover {
    text-decoration: underline;
}

答案 2 :(得分:0)

您可以使用text-decoration: none;进行以下操作:

a {
    text-decoration: none;
}
<a href="www.google.com">Link</a>