Answers:
删除锚标记的文字修饰
<a name="Section 1" style="text-decoration : none">Section</a>
您可以为特定的链接分配一个ID并添加CSS。请参阅以下步骤:
1.添加您选择的ID(必须是唯一名称;只能以文本开头,不能以数字开头):
<a href="/abc/xyz" id="smallLinkButton">def</a>
然后添加必要的CSS,如下所示:
#smallLinkButton:hover,active,visited{
text-decoration: none;
}