答案 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>