私のサイトには次のCSSとマークアップがあり、Account
リンクにカーソルを合わせると下線が表示されます。
デフォルトでは、下線はテキストから1ピクセル離れて表示されます。1ピクセルのクリアランスなしで、テキストの真下に下線を付けることは可能ですか。
可能であれば、私のサイトのすべてのリンクにこれを希望します。
a:active {
outline: none;
}
a.current {
text-decoration: underline;
color: #000000;
outline: none;
}
a:hover, a.active {
color: #000000;
outline: medium none;
text-decoration: underline;
}
<a href="http://www.ayrshireminis.com/account/login/">Account</a>