在CSS中,可以使用text-decoration
属性来去除链接<a>
的下划线。你可以直接将text-decoration
的值设置为none
来移除下划线。
下面是一个示例代码:
a {
text-decoration: none;
}
这段CSS会选择所有的<a>
元素,并且应用text-decoration: none;
规则,从而移除它们的下划线。如果你只想针对特定的链接去除下划线,可以为这些链接添加一个特定的类名,然后针对该类名设置text-decoration
属性。
例如:
a.no-underline {
text-decoration: none;
}
然后在HTML中,你可以这样使用这个类名:
<a href="https://example.com" class="no-underline">Example Link</a>
这样就只有带有no-underline
类的链接会移除下划线。