【发布时间】:2012-08-09 11:29:08
【问题描述】:
图像周围有一个用蓝色包裹的边框。它是蓝色的...我尝试了一些解决方案,但边框图像并没有消失。
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>
【问题讨论】: