リンクの画像があります。クリックするとどこかに移動し、クリックしてそのページに戻ると、その画像の周りに 1px の点線の青い境界線が表示されます。さらに、それをクリックしたままにすると、その境界線が赤くなります。これは本当に見栄えが悪く、その境界線を削除する方法が見つかりません。私は試してみました
a:visited {text-decoration: none}
a:active {text-decoration: none}
そして:
a:visited img{text-decoration: none}
a:active img{text-decoration: none}
効果なし。ちなみに、このボーダーはchromeでは表示されません。
その画像に関する私のcssコードは次のとおりです。
#back_to_photos{
float:right;
position: relative;
margin-top:-238px;
margin-right: 40px;
}
a:visited {text-decoration: none}
a:active {text-decoration: none}
ありがとうございました!