0

I tried many of the solution on the internet. nothing works.

        <a target="_blank" href="" style="outline : none; text-decoration:none;"><img style="border:none;outline : none;"  alt="" src="/Banners/imve.jpg"  /></a>

I tried also setting the border color to white in both elements. setting the border size to 0px.. But nothing works why?

4

2 に答える 2

3

次のことを試してください。

<a target="_blank" href="" style="outline : 0; border: 0; text-decoration:none;"><img style="border:0;outline : 0;" border="0"  alt="" src="/Banners/imve.jpg"  /></a>
于 2012-09-02T10:36:54.917 に答える
0

タグが付いoutline:none;ていますa。これはborder:none;

CSS

a, a img{
border:none;
}
a img{
display: block;
}
于 2012-09-02T10:39:10.987 に答える