重複の可能性:
Chrome/IE9 で画像の境界線を削除する
画像の周りに青色で囲まれた枠があります。青い色です...いくつかの解決策を実行しようとしましたが、境界線の画像が消えません。
CSS:
<style type="text/css">
a {outline : none;}
a img {outline : none;}
img {border : 0;}
a:active, a:focus
{
outline: none;
ie-dummy: expression(this.hideFocus=true);
}
</style>
ここに私のhtmlマークアップがあります:
<p style="margin-left: 39%;margin-top: 23px;">
<a href="<?php echo $review[0]['link']; ?>"
target="_blank" style="border: none;text-decoration: none;">
<img style="border: none;"
src="Images/Review/button_register_for_free.png"/>
</a>
</p>