asp.net - Blue Border around asp link button -
i have 2 asp linkbuttons encompass img tags within themselves. markup below:
<asp:linkbutton id="default" runat="server" onclick="calldefaultfunction" onclientclick="default();"> <img style="border:none;" src="../images/btnsetdefault.png" alt="" id="imgdefault" onmouseover="this.src='../images/btnsetdefaulthover.png'" onmouseout="this.src='../images/btnsetdefault.png'" /> </asp:linkbutton> <asp:linkbutton id="delete" runat="server" onclick="calldeletefunction" onclientclick="return confirmondelete();"> <img style="border:none;" src="../images/btndelete.png" alt="" id="imgdelete" onmouseover="this.src='../images/btndeletehover.png'" onmouseout="this.src='../images/btndelete.png'" /> </asp:linkbutton>
and below screenshot appears in ie 10. small , tiny blue segment between link buttons (which borderd red box). need remove that, tried using text-decoration:none linkbutton, did not work.
![image]http://postimg.org/image/se162y6z5/
any appreciated.
regards anurag
write a link tag
comming
blue line;
please use below in css style sheet.
a{ text-decoration:none; } img{ border:none; }
Comments
Post a Comment