回答:
アンカータグのテキスト装飾を削除する
<a name="Section 1" style="text-decoration : none">Section</a>
CSSを使用legend.green-color a:hover
してそれを行うことができます。
legend.green-color a:hover {
color:green;
text-decoration:none;
}
特定のリンクにIDを割り当て、CSSを追加できます。以下の手順を参照してください。
1.選択したIDを追加します(一意の名前でなければなりません。数字ではなく、テキストでのみ開始できます)。
<a href="/abc/xyz" id="smallLinkButton">def</a>
次に、次のように必要なCSSを追加します。
#smallLinkButton:hover,active,visited{
text-decoration: none;
}
legend.green-color{
color:green !important;
}