2016-12-10 5 views

答えて

0

あなたがしなければならないのは、CSSでこれです:

a { 
    text-decoration: none; 
} 
0

text-decoration: none;あなたが求めている何をしますが、ここでは永続的な輪郭のような他の奇妙を除去するためのスニペットがあります。

a.nostylelink { 
    outline: none !important; 
    text-decoration: none !important; 
    color: inherit; 
} 
a.nostylelink:active, 
a.nostylelink:visited, 
a.nostylelink:link { 
    color: inherit; 
    text-decoration: none !important; 
    outline: none !important; 
} 
a.nostylelink:hover { 
    text-decoration: none !important; 
    outline: none !important; 
} 

だけ<a>タグにクラスnostylelinkを追加、またはこのように、それを使用します。

<a class="nostylelink" href=""></a>

関連する問題